mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
20 lines
416 B
PHP
20 lines
416 B
PHP
<?php
|
|
|
|
namespace App\models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AddressBook extends model
|
|
{
|
|
protected $table = 'address_book';
|
|
|
|
protected $fillable = [
|
|
'company_id', 'reference', 'contact', 'street_one', 'street_two', 'city', 'state', 'post_code', 'country', 'default', 'billing'
|
|
];
|
|
|
|
public function company()
|
|
{
|
|
return $this->belongsTo('App\Models\Company');
|
|
}
|
|
}
|