Files
shipping-portal/app/Models/PackingListOwner.php
T

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;
}