Wiin
Anyone Successfuly Upgraded to V3 with Stancl Tenancy for Laravel Tenant Identification Issue
Like this in my case:
//AppServiceProvider.php
Livewire::setUpdateRoute(function ($handle) {
return Route::post('/livewire/update', $handle)
->middleware([
'web',
'universal',
InitializeTenancyByDomain::class,
]);
});
20 replies
Anyone Successfuly Upgraded to V3 with Stancl Tenancy for Laravel Tenant Identification Issue
I have it working fine too, the problem in my case was that I was using the old livewire 2 configuration, same problem as @cCc , doing this fixes it: https://livewire.laravel.com/docs/installation#configuring-livewires-update-endpoint
20 replies