From 6de32aa4ed2660676c3fd1b4ab789aeecf55eacf Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Mon, 25 Jul 2022 14:45:10 +0500 Subject: [PATCH] Update source/docs/v3/quickstart.blade.md Co-authored-by: lukinovec --- 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 1e8367f..9a1cbc3 100644 --- a/source/docs/v3/quickstart.blade.md +++ b/source/docs/v3/quickstart.blade.md @@ -176,7 +176,7 @@ To have users in tenant databases, let's move the `users` table migration (the f ## Creating tenants {#creating-tenants} -> Note: If you're using Laravel [Sail](https://laravel.com/docs/9.x/sail), ensure that `DB_USERNAME` has the necessary permissions to create databases. You can grant access to users by running the following command in MySQL console `grant create on *.* to 'sail'@'%';`. +> Note: If you're using [Laravel Sail](https://laravel.com/docs/9.x/sail), ensure that `DB_USERNAME` has the necessary permissions to create databases. You can grant access to users by running `grant create on *.* to 'sail'@'%';` in the MySQL console. For testing purposes, we'll create a tenant in `tinker` — no need to waste time creating controllers and views for now.