Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }