diff --git a/source/docs/v3/integrations/livewire.blade.md b/source/docs/v3/integrations/livewire.blade.md index e92ef5c..5e034df 100644 --- a/source/docs/v3/integrations/livewire.blade.md +++ b/source/docs/v3/integrations/livewire.blade.md @@ -38,16 +38,23 @@ config/livewire.php 'middleware_group' => [ 'web', InitializeTenancyByPath::class, // or whatever tenancy middleware you use - ],``` + ], +``` add in the tenant route group -```Route::post('livewire/message/{name}', [HttpConnectionHandler::class, '__invoke']);``` +``` +Route::post('livewire/message/{name}', [HttpConnectionHandler::class, '__invoke']); +``` In Blade just after @livewireScripts: + ``` @livewireScripts ``` + And in case you are wondering about the config of Livewire, there is no need to change it. Just leave it as it is; null: -```'asset_url' => null,``` +``` +'asset_url' => null, +```