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

DefaultSetting.php 630B

1234567891011121314151617181920212223242526272829
  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 = 'Defaults';
  8. protected static ?string $navigationGroup = 'Settings';
  9. protected static ?string $title = 'Defaults';
  10. protected static ?string $slug = 'defaults';
  11. protected static string $view = 'filament.pages.default-setting';
  12. public function getViewData(): array
  13. {
  14. return [
  15. 'defaultSetting' => \App\Models\Setting\DefaultSetting::first(),
  16. ];
  17. }
  18. }