dbfdg hasOne('App\Models\Department', 'id', 'department_id'); } public function branch() { return $this->hasOne('App\Models\Branch', 'id', 'branch_id'); } public function employee() { return $this->hasOne('App\Models\Employee', 'id', 'employee_id'); } }