© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•4mo ago•
4 replies
SuperUserDo

Issue With Custom Filament Page Route

Hi I have created custom Filament Page

<?php

declare(strict_types=1);

namespace App\Filament\Pages\SOC;

use App\Facades\System\Utils;
use App\Helpers\Filament\FormInputsBuilder;
use App\Models\SOC\Disaster as DisasterModel;
use Filament\Forms\Form;
use Filament\Pages\Page;
use Illuminate\Contracts\Support\Htmlable;

class PreviewDisaster extends Page
{
    public ?DisasterModel $disaster = null;

    public bool $canEdit = false;

    protected static ?string $navigationIcon = 'heroicon-o-document-text';

    protected static string $view = 'filament.pages.s-o-c.preview-disaster';

    protected static bool $shouldRegisterNavigation = false;

    protected static ?string $slug = 'service-operation-center/disaster/preview/{disaster_id}';

    etc.....
<?php

declare(strict_types=1);

namespace App\Filament\Pages\SOC;

use App\Facades\System\Utils;
use App\Helpers\Filament\FormInputsBuilder;
use App\Models\SOC\Disaster as DisasterModel;
use Filament\Forms\Form;
use Filament\Pages\Page;
use Illuminate\Contracts\Support\Htmlable;

class PreviewDisaster extends Page
{
    public ?DisasterModel $disaster = null;

    public bool $canEdit = false;

    protected static ?string $navigationIcon = 'heroicon-o-document-text';

    protected static string $view = 'filament.pages.s-o-c.preview-disaster';

    protected static bool $shouldRegisterNavigation = false;

    protected static ?string $slug = 'service-operation-center/disaster/preview/{disaster_id}';

    etc.....


But i am constantly getting that rhat route is not defiend, even tough when i do php artisan route:list that route is there.. Did anyone have that problem?
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Custom Page issue with filament
FilamentFFilament / ❓┊help
2y ago
Custom filament page route for change password
FilamentFFilament / ❓┊help
3y ago
Custom page route
FilamentFFilament / ❓┊help
2y ago
Route to custom page
FilamentFFilament / ❓┊help
3y ago