From 0f58717ca09ba395b8b7613339041b2f1ae4acaa Mon Sep 17 00:00:00 2001 From: Chris Brown Date: Mon, 23 Sep 2019 17:15:39 -0400 Subject: [PATCH] Update console-commands.blade.md --- docs/source/v2/console-commands.blade.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/v2/console-commands.blade.md b/docs/source/v2/console-commands.blade.md index b8ce69a..65dc67b 100644 --- a/docs/source/v2/console-commands.blade.md +++ b/docs/source/v2/console-commands.blade.md @@ -38,7 +38,7 @@ Similarly to [migrate](#migrate), these commands accept a `--tenants` option. ## Run {#run} -You can use the tenants:run command to run your own commands for tenants. +You can use the `tenants:run` command to run your own commands for tenants. If your command's signature were `email:send {--queue} {--subject=} {body}`, you would run this command like this: ``` @@ -61,4 +61,4 @@ You can delete specific tenants' cache by using the `--tags` option on `cache:cl php artisan cache:clear --tags=tenantdbe0b330-1a6e-11e9-b4c3-354da4b4f339 ``` -The tag is `config('tenancy.cache.tag_base') . $id`. \ No newline at end of file +The tag is derived from `config('tenancy.cache.tag_base') . $id`.