Large commit

This commit is contained in:
omair saleh
2021-08-16 08:59:26 +08:00
parent e2874f7199
commit d8c767c670
260 changed files with 4657 additions and 2960 deletions
@@ -2,18 +2,18 @@
namespace App\Http\Controllers\PackingLists\Containers;
use App\Classes\Modules\ContainerPackingLists\ControllersLogic\FetchContainerPackingListLogic;
use App\Classes\Modules\PackingLists\ControllersLogic\Containers\FetchContainerLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class FetchContainerPackingListController
class FetchContainerController
{
/**
* @param Request $request
* @param FetchContainerPackingListLogic $logic
* @param FetchContainerLogic $logic
* @return JsonResponse
*/
public function fetch(Request $request, FetchContainerPackingListLogic $logic): JsonResponse {
public function fetch(Request $request, FetchContainerLogic $logic): JsonResponse {
return $logic->execute($request);
}