© 2026 Hedgehog Software, LLC
php artisan make:filament-page QueueDashboard
route:list
GET|HEAD admin/queue-dashboard .............................................................................................................................................................................................................. filament.admin.pages.queue-dashboard › App\Filament\Pages\QueueDashboard
<?php namespace App\Filament\Pages; use Filament\Pages\Page; class QueueDashboard extends Page { protected static ?string $navigationIcon = 'heroicon-o-document-text'; protected static string $view = 'filament.pages.queue-dashboard'; protected ?string $heading = 'Custom Page Heading'; protected static ?string $navigationLabel = 'Custom Navigation Label'; public static function canAccess(): bool { return true; } }