Files
shipping-portal/app/Classes/General/Interfaces/Packable.php
T
2021-10-07 09:20:04 +08:00

12 lines
176 B
PHP

<?php
namespace App\Classes\General\Interfaces;
use Illuminate\Database\Eloquent\Relations\MorphMany;
interface Packable
{
public function packingLists(): morphMany;
}