Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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