belongsTo(User::class, 'client_id'); } // Связь со сотрудником public function employee() { return $this->belongsTo(User::class, 'employee_id'); } // Связь с услугой public function service() { return $this->belongsTo(Service::class); } }