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

18 lines
383 B
PHP
Executable File

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