From 728c9d78c09cc7c8789bb7c920c82f2609a99bc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 7 Jul 2021 17:42:57 +0200 Subject: [PATCH] remove indentation --- source/docs/v3/integrations/livewire.blade.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/source/docs/v3/integrations/livewire.blade.md b/source/docs/v3/integrations/livewire.blade.md index 6802544..c4cf46f 100644 --- a/source/docs/v3/integrations/livewire.blade.md +++ b/source/docs/v3/integrations/livewire.blade.md @@ -15,12 +15,11 @@ Open the `config/livewire.php` file and change this: to this: ```php - 'middleware_group' => [ - 'web', - 'universal', - InitializeTenancyByDomain::class, // or whatever tenancy middleware you use - ], - +'middleware_group' => [ + 'web', + 'universal', + InitializeTenancyByDomain::class, // or whatever tenancy middleware you use +], ``` (Don't forget to import the middleware class.)