From 005e920856e98c074f3253e8c42d8a1617836d3d Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 9 Jun 2022 18:06:51 +0200 Subject: [PATCH] Add missing closing parenthesis (#168) --- source/docs/v3/customizing-databases.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/customizing-databases.blade.md b/source/docs/v3/customizing-databases.blade.md index 859fcc7..b8afaa6 100644 --- a/source/docs/v3/customizing-databases.blade.md +++ b/source/docs/v3/customizing-databases.blade.md @@ -53,7 +53,7 @@ Note that you don't want to grant the users the ability to grant themselves more > **Important:** there should be no `tenant` connection in `config/database.php`. If you create a template connection for tenants, name it something like `tenant_template`. The `tenant` connection is entirely managed by the package and gets reset to `null` when tenancy is ended. -To specify the connection that should be used to construct this tenant's database connection (the array like you'd find in `config/database.php`, set the `tenancy_db_connection` key. Otherwise, the connection whose name is in the `tenancy.database.template_connection` config will be used. If that key is null, the central connection will be used. +To specify the connection that should be used to construct this tenant's database connection (the array like you'd find in `config/database.php`), set the `tenancy_db_connection` key. Otherwise, the connection whose name is in the `tenancy.database.template_connection` config will be used. If that key is null, the central connection will be used. ## Specifying other connection details {#specifyng-other-connection-details}