mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
20 lines
320 B
PHP
20 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Warehouse extends AbstractModel
|
|
{
|
|
|
|
protected $table = 'warehouses';
|
|
|
|
protected $fillable = [
|
|
'name', 'email'
|
|
];
|
|
|
|
public function addressBook()
|
|
{
|
|
return $this->hasMany('App\Models\AddressBook', 'reference_id', 'id')->where('type', '=', 2);
|
|
}
|
|
|
|
}
|