hasOne('App\Models\StaffMember', 'id', 'last_modified_by'); } public function network_info(){ return $this->hasOne('App\Models\NetworkOps', 'id', 'network_id'); } public function client_info(){ return $this->hasOne('App\Models\Client', 'id', 'client_id'); } public function created_by_info(){ return $this->hasOne('App\Models\StaffMember', 'id', 'created_by'); } }