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\UpdateContainerPackingListLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class UpdateContainerPackingListController
{
/**
* @param Request $request
* @param UpdateContainerPackingListLogic $logic
* @return JsonResponse
*/
public function update(Request $request, UpdateContainerPackingListLogic $logic): JsonResponse {
return $logic->execute($request);
}
}