Files
izyim/app/Models/Package.php
T
2019-02-14 11:43:19 +08:00

19 lines
327 B
PHP

<?php
namespace App\Models;
class Package extends AbstractModel
{
protected $table = 'packages';
protected $fillable = [
'list_id', 'description', 'width', 'length', 'height', 'quantity'
];
public function packingList()
{
return $this->belongsTo(PackingList::class, 'list_id');
}
}