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