Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314151617181920 |
- <?php
-
- namespace App\Filament\Pages;
-
- use Filament\Pages\Page;
-
- class Invoice extends Page
- {
- protected static ?string $navigationIcon = 'heroicon-o-document-text';
-
- protected static ?string $navigationLabel = 'Invoice';
-
- protected static ?string $navigationGroup = 'Settings';
-
- protected static ?string $title = 'Invoice';
-
- protected static ?string $slug = 'invoice';
-
- protected static string $view = 'filament.pages.invoice';
- }
|