mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
25 lines
674 B
PHP
25 lines
674 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\PackingListOwner
|
|
*
|
|
* @property int $owner_packing_list_id
|
|
* @property int $packing_list_id
|
|
* @method static Builder|PackingListOwner newModelQuery()
|
|
* @method static Builder|PackingListOwner newQuery()
|
|
* @method static Builder|PackingListOwner query()
|
|
* @method static Builder|PackingListOwner whereOwnerPackingListId($value)
|
|
* @method static Builder|PackingListOwner wherePackingListId($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class PackingListOwner extends Model
|
|
{
|
|
use HasFactory;
|
|
}
|