| 1234567891011121314151617181920 |
- <?php
- namespace App\Filament\Pages;
- use Filament\Pages\Page;
- use UnitEnum;
- use BackedEnum;
- class ApiDebugHub extends Page
- {
- protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-wrench-screwdriver';
- protected static ?string $navigationLabel = '题库 API 调试';
- protected static UnitEnum|string|null $navigationGroup = 'API 管理';
- protected static ?int $navigationSort = 2;
- protected string $view = 'filament.pages.api-debug-hub';
- }
|