From 1ffa33f283376a6c9d4fd14a2c4d968dac1a5806 Mon Sep 17 00:00:00 2001 From: Samuel Stancl Date: Mon, 22 Jun 2020 16:38:28 +0200 Subject: [PATCH] Mention provider --- source/docs/v3/upgrading.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/upgrading.blade.md b/source/docs/v3/upgrading.blade.md index 2e753c7..27ce123 100644 --- a/source/docs/v3/upgrading.blade.md +++ b/source/docs/v3/upgrading.blade.md @@ -105,6 +105,6 @@ That said, automatic tenancy will still work the same way. ``` - Replace your Http Kernel with a stock version (copy it from laravel/laravel: [https://github.com/laravel/laravel/blob/master/app/Http/Kernel.php](https://github.com/laravel/laravel/blob/master/app/Http/Kernel.php)) and add back in any changes you made. The package now doesn't necessitate any Kernel changes, so remove all of the 2.x ones. -- Delete config, publish it & the new files using `php artisan tenancy:install` +- Delete config, publish it & the new files using `php artisan tenancy:install`. Register the new provider (see instructions on the [Installation]({{ $page->link('installation') }}) page) - Create Tenant model, as instructed on the [Tenants]({{ $page->link('tenants') }}) page - Update routes to use the correct middleware, see the [Routes]({{ $page->link('routes') }}) page