Files
shipping-portal/app/Http/Controllers/PackingLists/Containers/FetchContainerPackingListController.php
T
2021-07-24 11:39:40 +08:00

21 lines
544 B
PHP

<?php
namespace App\Http\Controllers\PackingLists\Containers;
use App\Classes\Modules\ContainerPackingLists\ControllersLogic\FetchContainerPackingListLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class FetchContainerPackingListController
{
/**
* @param Request $request
* @param FetchContainerPackingListLogic $logic
* @return JsonResponse
*/
public function fetch(Request $request, FetchContainerPackingListLogic $logic): JsonResponse {
return $logic->execute($request);
}
}