feat(Admin Panel & Charts)

This commit is contained in:
2025-10-23 11:41:56 +02:00
parent bd268f9b7f
commit 07160656f5
26 changed files with 840 additions and 7 deletions

View File

@@ -48,6 +48,18 @@ class User extends Authenticatable
];
}
public static function getAttributeLabel(string $attribute): string
{
return __("users.fields.' . $attribute");
}
/*public static function getRoleLabel(string $role): string
{
return __("roles.fields.' . $role");
}*/
public function members(): hasMany
{
return $this->hasMany(Member::class);