您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Account.php 419B

12345678910111213141516171819
  1. <?php
  2. namespace App\Filament\User\Clusters;
  3. use Filament\Clusters\Cluster;
  4. class Account extends Cluster
  5. {
  6. protected static ?string $navigationIcon = 'heroicon-s-user';
  7. protected static ?string $navigationLabel = 'My Account';
  8. protected static ?string $clusterBreadcrumb = 'My Account';
  9. public static function getNavigationUrl(): string
  10. {
  11. return static::getUrl(panel: 'user');
  12. }
  13. }