© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
4 replies
davedriesmans

How to have a custom route for new entry?

I want to add have a custom url/route to add a new entry (the button on the top right of a table)

I receive an error ("not enough memory") if I change the create route here:

public static function getPages(): array
    {
        return [
            'index' => Pages\ListFunbels::route('/'),
            'create' => Pages\CreateFunbel::route('/create'),
            'edit' => Pages\EditFunbel::route('/{record}/edit'),
        ];
    }
public static function getPages(): array
    {
        return [
            'index' => Pages\ListFunbels::route('/'),
            'create' => Pages\CreateFunbel::route('/create'),
            'edit' => Pages\EditFunbel::route('/{record}/edit'),
        ];
    }



How can I achieve 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

I have a custom entry (For Infolist). How to pass data to the view?
FilamentFFilament / ❓┊help
17mo ago
How to set a custom route
FilamentFFilament / ❓┊help
3y ago
How to have Resource with custom route parameters?
FilamentFFilament / ❓┊help
3y ago