© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
15 replies
NolanN

Getting a 404 when trying to register a tenant

I'm trying to enable the tenant registration feature in one of my panels but I'm getting a 404 when I try to access the page:

No query results for model [App\Models\Customer] new
No query results for model [App\Models\Customer] new


Here is the code from my panel:
    public function panel(Panel $panel): Panel
    {
        return $panel->id('customer')
            ->tenant(Customer::class)
            ->tenantRegistration(RegisterCustomer::class)
            ...
    }
    public function panel(Panel $panel): Panel
    {
        return $panel->id('customer')
            ->tenant(Customer::class)
            ->tenantRegistration(RegisterCustomer::class)
            ...
    }


The route is listed as expected:

GET|HEAD  app/new .................... filament.customer.tenant.registration › App\Filament\Customer\Pages\RegisterCustomer
GET|HEAD  app/new .................... filament.customer.tenant.registration › App\Filament\Customer\Pages\RegisterCustomer


Any idea why there is a query being made for this customer model?
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

Tenant panel gives 404
FilamentFFilament / ❓┊help
3y ago
Getting 404 when loading assets
FilamentFFilament / ❓┊help
3y ago
How do I register a user on a tenant ?
FilamentFFilament / ❓┊help
2y ago
404 only when RelationManager enabled (tenant setup, policies applied)
FilamentFFilament / ❓┊help
5mo ago