/home/techb158/dev.balacoffee.com/app/Models
Edit: /home/techb158/dev.balacoffee.com/app/Models/Designation.php (658B)
'integer',
'company_id' => 'integer',
];
public function company()
{
return $this->hasOne('App\Models\Company', 'id', 'company_id');
}
public function department()
{
return $this->hasOne('App\Models\Department', 'id', 'department_id');
}
}