WIP - Order steps & remaining APIs

This commit is contained in:
Fairuz
2021-07-24 11:39:40 +08:00
parent 1281990b08
commit 7ae581300d
46 changed files with 1379 additions and 218 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\PackingLists\Containers;
use App\Classes\Modules\ContainerPackingLists\ControllersLogic\CreateContainerPackingListLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class CreateContainerPackingListController
{
/**
* @param Request $request
* @param CreateContainerPackingListLogic $logic
* @return JsonResponse
*/
public function create(Request $request, CreateContainerPackingListLogic $logic): JsonResponse {
return $logic->execute($request);
}
}