#What causes the page to be not found even when redirected to the correct route?

3 messages · Page 1 of 1 (latest)

somber ruin
#

This are my route especially the /group-settings/create?section={section}

This is how I called it

<a href="{{ route('filament.manage.pages.group-settings.create?section={section}', ['section' => $section->id]) }}"
 class="p-2">
    <x-heroicon-o-plus class="w-5 h-5" />
</a>
stiff talonBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

somber ruin
#

This is the CreateGroupSettings Class

class CreateGroupSettings extends Page
{
    protected static ?string $navigationIcon = 'heroicon-o-document-text';
    protected static string $view = 'filament.pages.create-group-settings';
    public static bool $shouldRegisterNavigation = false;
    protected static ?string $slug = 'group-settings/create?section={section}';
}