mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 12:24:11 +00:00
8a28eb1790
This reverts merge request !5
18 lines
383 B
PHP
18 lines
383 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class AddressBook extends AbstractModel
|
|
{
|
|
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');
|
|
}
|
|
}
|