mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
20 lines
552 B
PHP
20 lines
552 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Delivery;
|
|
|
|
use App\Classes\Modules\Delivery\ControllersLogic\CreateDeliveryOrderLogic;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class CreateDeliveryOrderController
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param CreateDeliveryOrderLogic $createDeliveryOrderLogic
|
|
* @return JsonResponse
|
|
*/
|
|
public function create(Request $request, CreateDeliveryOrderLogic $createDeliveryOrderLogic): JsonResponse
|
|
{
|
|
return $createDeliveryOrderLogic->execute($request);
|
|
}
|
|
} |