Files
shipping-portal/app/Classes/Modules/ContainerPackingLists/Services/DeletesContainerPackingList.php
T
2021-07-24 11:39:40 +08:00

20 lines
479 B
PHP

<?php
namespace App\Classes\Modules\ContainerPackingLists\Services;
use App\Classes\General\Eloquent\AbstractDeleteRecord;
use App\Models\ContainerPackingList;
class DeletesContainerPackingList extends AbstractDeleteRecord
{
/**
* @param ContainerPackingList $model
* @return mixed
* @throws \App\Classes\Exceptions\MalformedRequestException
*/
public function execute(ContainerPackingList $model) {
return $this->handler($model);
}
}