You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -80,7 +80,7 @@ This package assumes that you have a good understanding of [Laravel's Task Sched
80
80
81
81
##### Web Dashboard
82
82
83
-
`Laravel Totem`'s dashboard is inspired by `Laravel Horizon`. Just like Horizon you can configure authentication to `Totem`'s dashboard. Add the following to the boot method of your AppServiceProvider or wherever you might seem fit.
83
+
`Laravel Totem`'s dashboard is inspired by `Laravel Horizon`. Just like Horizon you can configure authentication to `Totem`'s dashboard. Add the following to the boot method of your AppServiceProvider or wherever you might seem fit.
84
84
85
85
```php
86
86
use Studio\Totem\Totem;
@@ -98,6 +98,7 @@ By default Totem's dashboard only works in local environment. To view the dashbo
98
98
By default `Totem` outputs all Artisan commands on the Create/Edit tasks. To make this dropdown more concise there is a filter config feature that can be set in the `totem.php` config file.
99
99
100
100
Example filters
101
+
101
102
```php
102
103
'artisan' => [
103
104
'command_filter' => [
@@ -147,6 +148,7 @@ If your command requires arguments or options please use the optional command pa
147
148
```text
148
149
name=john.doe --greetings='Welcome to the new world'
149
150
```
151
+
150
152
In the example above, name is an argument while greetings is an option
0 commit comments