This commit is contained in:
mchev
2026-03-21 18:59:53 +01:00
parent 186ab35fd4
commit c901114fc0
232 changed files with 685 additions and 403 deletions

View File

@@ -121,7 +121,7 @@ class User extends Authenticatable implements HasMedia
public function creator(): BelongsTo
{
return $this->belongsTo(\App\Models\User::class, 'creator_id');
return $this->belongsTo(User::class, 'creator_id');
}
public function companies(): BelongsToMany