mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
30 lines
399 B
PHP
30 lines
399 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Warehouse extends Model
|
|
{
|
|
protected $fillable = [
|
|
|
|
'address',
|
|
'city',
|
|
'zip',
|
|
'state',
|
|
'contact_person',
|
|
'contact_person_no',
|
|
'branch',
|
|
'country',
|
|
'com_id'
|
|
|
|
];
|
|
|
|
public function company(){
|
|
|
|
return $this->belongsTo(App\Company);
|
|
|
|
}
|
|
|
|
}
|