mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 12:34:01 +00:00
15 lines
308 B
PHP
15 lines
308 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
|
|
|
class ContainerPackingList extends AbstractModel
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'container_packing_lists';
|
|
}
|