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
- Publish `Totem` assets to your public folder using the following command
37
-
38
-
php artisan totem:assets
43
+
44
+
```
45
+
php artisan totem:assets
46
+
```
39
47
40
48
#### Configuration
41
49
42
50
##### Cron Job
43
51
44
52
This package assumes that you have a good understanding of [Laravel's Task Scheduling](https://laravel.com/docs/5.4/scheduling) and [Laravel Console Commands](https://laravel.com/docs/5.4/artisan#writing-commands). Before any of this works please make sure you have a cron running as follows:
`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.
51
61
52
-
```
62
+
```php
53
63
use Studio\Totem\Totem;
54
64
55
65
Totem::auth(function($request) {
@@ -64,7 +74,7 @@ By default Totem's dashboard only works in local environment. To view the dashbo
64
74
65
75
All artisan commands can be scheduled. If you want to hide a command from Totem make sure you have the `hidden` attribute set to true in your command. For e.g.
0 commit comments