© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•5mo ago•
14 replies
keiron

How do I receive URL parameters in a custom page?

Sorry, this is a really simple question, but I have been struggling with it. I've created a custom page:

<?php

namespace App\Filament\Pages;

use Filament\Pages\Page;

class VetProfile extends Page
{
    protected string $view = 'filament.pages.vet-profile';

    public function mount(): void
    {
        
    }
}
<?php

namespace App\Filament\Pages;

use Filament\Pages\Page;

class VetProfile extends Page
{
    protected string $view = 'filament.pages.vet-profile';

    public function mount(): void
    {
        
    }
}


I want to be able to pass the member id to this page so it knows which record to display and handle, either like this:

/vet-profile/34839439

or if I have to:

/vet-profile?memberId=34839439

How do I do this?
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 with URL parameters
FilamentFFilament / ❓┊help
3y ago
Set url parameters in custom view.
FilamentFFilament / ❓┊help
3y ago
Passing parameters to a custom page
FilamentFFilament / ❓┊help
3y ago
Custom page url
FilamentFFilament / ❓┊help
3y ago