You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DefaultSetting.php 466B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Filament\Pages;
  3. use Filament\Pages\Page;
  4. class DefaultSetting extends Page
  5. {
  6. protected static ?string $navigationIcon = 'heroicon-o-adjustments';
  7. protected static ?string $navigationLabel = 'Default';
  8. protected static ?string $navigationGroup = 'Settings';
  9. protected static ?string $title = 'Default';
  10. protected static ?string $slug = 'default';
  11. protected static string $view = 'filament.pages.default-setting';
  12. }