From 4c5bb1f8bc8117c51d66741ccd0237cebc2d02df Mon Sep 17 00:00:00 2001 From: Stef Nielandt <75675794+stefnielandt@users.noreply.github.com> Date: Wed, 23 Nov 2022 12:41:15 +0100 Subject: [PATCH] Fixed typo (#224) Fixed a typo: unopinonated -> unopinionated --- source/docs/v3/quickstart.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/quickstart.blade.md b/source/docs/v3/quickstart.blade.md index a75f39e..3d3d586 100644 --- a/source/docs/v3/quickstart.blade.md +++ b/source/docs/v3/quickstart.blade.md @@ -48,7 +48,7 @@ App\Providers\TenancyServiceProvider::class, // <-- here ## Creating a tenant model {#creating-a-tenant-model} -Now you need to create a Tenant model. The package comes with a default Tenant model that has many features, but it attempts to be mostly unopinonated and as such, we need to create a custom model to use domains & databases. Create the file `app/Models/Tenant.php` like this: +Now you need to create a Tenant model. The package comes with a default Tenant model that has many features, but it attempts to be mostly unopinionated and as such, we need to create a custom model to use domains & databases. Create the file `app/Models/Tenant.php` like this: ```php