F
Filament4mo ago
o.m

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

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>
<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>
No description
No description
1 Reply
o.m
o.mOP4mo ago
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}';
}
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}';
}

Did you find this page helpful?