multiple invoices with one payment SDEV-421

This commit is contained in:
94924240Jeko!
2022-12-20 21:14:09 +03:00
commit c73e86e2cf
1700 changed files with 111993 additions and 0 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\PackingLists\Containers;
use App\Classes\Modules\PackingLists\ControllersLogic\Containers\FetchContainerLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class FetchContainerController
{
/**
* @param Request $request
* @param FetchContainerLogic $logic
* @return JsonResponse
*/
public function fetch(Request $request, FetchContainerLogic $logic): JsonResponse {
return $logic->execute($request);
}
}