選択できるのは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. }