Public livewire page in custom plugin
Hi, i'm making a custom plugin, this plugin is registered in the AdminPanel
I need to have a full livewire page outside the panels, accessible to everyone
the page in the end show a filament form, at the moment i have a livewire error Unable to find component: [register-tenant]
route
controller
the view
the call to the livewire component cause
problem is HERE! this file is never called
in src/Http/Livewire
the boot function in the plugin service provider
I need to have a full livewire page outside the panels, accessible to everyone
the page in the end show a filament form, at the moment i have a livewire error Unable to find component: [register-tenant]
route
controller
the view
the call to the livewire component cause
problem is HERE! this file is never called
in src/Http/Livewire
the boot function in the plugin service provider
Solution
i've found the solution this morning, wrong declaration
this is right use Base33\BossOnboarding\Http\Livewire\RegisterTenant;
but this use Base33\BossOnboarding\RegisterTenant; doesn't throw errors
this is right use Base33\BossOnboarding\Http\Livewire\RegisterTenant;
but this use Base33\BossOnboarding\RegisterTenant; doesn't throw errors