mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 12:34:01 +00:00
7d332f01e5
update dispatch date
21 lines
539 B
PHP
21 lines
539 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\PackingLists\Containers;
|
|
|
|
use App\Classes\Modules\PackingLists\ControllersLogic\Containers\UpdateDropDateContainerLogic;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class UpdateDropDateContainerController
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param UpdateDropDateContainerLogic $logic
|
|
* @return JsonResponse
|
|
*/
|
|
public function update(Request $request, UpdateDropDateContainerLogic $logic): JsonResponse {
|
|
return $logic->execute($request);
|
|
}
|
|
|
|
}
|