Files
izyim/app/Models/Package.php
T
2019-03-19 17:11:21 +08:00

19 lines
327 B
PHP
Executable File

<?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');
}
}