belongsToMany( Project::class, 'project_smartdok_profile', 'smartdok_profile_id', 'project_id' ); } /** * The work hours entries for the profile. */ public function workHours(): HasMany { return $this->hasMany(WorkHour::class, 'user_id', 'id'); } }