mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-21 13:34:13 +00:00
large commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Orders;
|
||||
|
||||
use App\Classes\Modules\ControllersLogic\Orders\PackingList\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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user