dbfdg hasOne('App\Models\Employee', 'id', 'employee_id'); } public function complaintFrom() { return $this->hasOne('App\Models\Employee', 'id', 'complaint_from'); } public function complaintAgainst() { return $this->hasOne('App\Models\Employee', 'id', 'complaint_against'); } }