From 45dea4eede6ab6472123afb868bae0afb27c463f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thore=20S=C3=BCnert?= Date: Fri, 23 Aug 2024 13:41:51 +0200 Subject: [PATCH] Update using-a-custom-tenant-model.md (#553) --- docs/advanced-usage/using-a-custom-tenant-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-usage/using-a-custom-tenant-model.md b/docs/advanced-usage/using-a-custom-tenant-model.md index cb30efe..40aad76 100644 --- a/docs/advanced-usage/using-a-custom-tenant-model.md +++ b/docs/advanced-usage/using-a-custom-tenant-model.md @@ -25,7 +25,7 @@ You should specify the class name of your model in the `tenant_model` key of the You don't have to extend our `Tenant` model. For example if you use Laravel Jetstream, then you probably want to use `Team` model provided by that package as your tenant model. -To accomplish that, you can implement the `IsTenant` interface and use trait `ImplementsTenant` to fulfill that intervace. +To accomplish that, you can implement the `IsTenant` interface and use trait `ImplementsTenant` to fulfill that interface. Here's an example: