© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
99 replies
code eater

Issue when creating a custom page

i get this error after setting up a custom page
and here is my code

use Filament\Resources\Pages\Page;
use App\Filament\Resources\UserResource;

class UserDashboard extends Page
{
protected static string $resource = UserResource::class;

protected static ?string $navigationGroup = 'Manage Users';

protected static string $view = 'filament.resources.user-resource.pages.user-dashboard';



}

and my blade file

<x-filament::page>

<p> hello </p>

</x-filament::page>
in my AppService Provider i have this

Filament::registerNavigationItems([
NavigationItem::make('Analytics')
->url(UserResource::getUrl('dashboard')
)
->icon('heroicon-o-presentation-chart-line')
->activeIcon('heroicon-s-presentation-chart-line')
->group('Manage Users')
->sort(2),
]);


currently now clicking on this link returns 404
image.png
image.png
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
Next page

Similar Threads

Creating a page
FilamentFFilament / ❓┊help
3y ago
Custom message when saving/creating
FilamentFFilament / ❓┊help
3y ago
Custom Page issue with filament
FilamentFFilament / ❓┊help
2y ago
Issue with schema reactivity in a custom page
FilamentFFilament / ❓┊help
6mo ago