From 22e06dae4f9ea5a40762f2ddfad6b4c3cd9a2cd1 Mon Sep 17 00:00:00 2001 From: injektion Date: Wed, 7 Jul 2021 08:43:10 -0700 Subject: [PATCH] Update livewire.blade.md (#131) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update livewire.blade.md Unless aliased, when going thru the dox on setting up Livewire using the previous code will fail with an error: Target class "[InitializeTenancyByDomain]" does not exist. Changing it to the full namespace works fine. * Update livewire.blade.md * remove indentation Co-authored-by: Samuel Ć tancl --- source/docs/v3/integrations/livewire.blade.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/docs/v3/integrations/livewire.blade.md b/source/docs/v3/integrations/livewire.blade.md index b83788d..c4cf46f 100644 --- a/source/docs/v3/integrations/livewire.blade.md +++ b/source/docs/v3/integrations/livewire.blade.md @@ -22,6 +22,8 @@ to this: ], ``` +(Don't forget to import the middleware class.) + Now you can use Livewire both in the central app and the tenant app. Also make sure to enable [universal routes]({{ $page->link('features/universal-routes') }}).