Add notes for Laravel Sail users (#182)

* sail notes

* Update source/docs/v3/configuration.blade.md

Co-authored-by: lukinovec <lukinovec@gmail.com>

* Update source/docs/v3/quickstart.blade.md

Co-authored-by: lukinovec <lukinovec@gmail.com>

Co-authored-by: lukinovec <lukinovec@gmail.com>
This commit is contained in:
Abrar Ahmad 2022-07-25 21:38:01 +05:00 committed by GitHub
parent 53f9125946
commit d09e4864ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 2 deletions

View file

@ -176,6 +176,8 @@ 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 `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.
```php