mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
20 lines
570 B
PHP
20 lines
570 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Orders\Attachments;
|
|
|
|
use App\Classes\Modules\ControllersLogic\Orders\Attachments\UpdatePackingListLogic;
|
|
use Illuminate\Http\Request;
|
|
|
|
class UpdatePackingListController
|
|
{
|
|
/**
|
|
* @param String $orderId
|
|
* @param Request $request
|
|
* @param UpdatePackingListLogic $logic
|
|
* @throws \App\Classes\Modules\ControllerLogic\Exceptions\InternalServerErrorException
|
|
*/
|
|
public function update(String $orderId, Request $request , UpdatePackingListLogic $logic){
|
|
$logic->execute($orderId, $request);
|
|
}
|
|
|
|
} |