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