belongsTo(Services::class); } public function client() { return $this->belongsTo(User::class, 'client_id'); } public function employee() { return $this->belongsTo(User::class, 'employee_id'); } }