mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 04:14:05 +00:00
19 lines
345 B
PHP
19 lines
345 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Package extends AbstractModel
|
|
{
|
|
|
|
protected $table = 'packages';
|
|
|
|
protected $fillable = [
|
|
'list_id', 'description', 'type', 'width', 'length', 'height', 'weight', 'quantity'
|
|
];
|
|
|
|
public function packingList()
|
|
{
|
|
return $this->belongsTo(PackingList::class, 'list_id');
|
|
}
|
|
}
|