mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 20:34:09 +00:00
20 lines
357 B
PHP
20 lines
357 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', 'reference_id', 'id')->where('type', '=', 1);
|
|
}
|
|
|
|
}
|