Stand-alone Filament pages throwing 'component not found' exception on form submit
Hi all
I'm trying to create some independent pages that extend SimplePage and route directly to them using
Route::get('/test-page', TestPage::class)->name('test-page');
.
I'm running into a Livewire ComponentNotFoundException
when I try to submit the form. Could someone help? Are there any know issues with routing directly to Filament pages? Here's my code:
and the view:
When I submit the form, the component namespace that's returned with the exception is different to the one I've specified in the class. I'm getting Unable to find component: [modules.filament.pages.test-page]
. But the correct view (filament-module::test-page
) is being rendered correctly when the page loads.
Not sure what's going on.1 Reply
Solution
Never mind, it was a component registration issue.