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
Run a migration to setup the `queue_monitor` database table:
32
32
33
-
```
33
+
```php
34
34
php artisan migrate
35
35
```
36
36
@@ -42,7 +42,7 @@ All queue jobs will now be monitored and results stored to the `queue_monitor` d
42
42
43
43
To save custom data with the queue monitor results you need to include the `QueueMonitorData` trait in your Job and use the `saveQueueMonitorData()` method. For example:
44
44
45
-
```
45
+
```php
46
46
<?php
47
47
48
48
namespace App\Jobs;
@@ -90,4 +90,4 @@ class ExampleJob implements ShouldQueue
90
90
## Credits
91
91
92
92
Laravel Queue Monitor was created by [Gilbert Pellegrom](https://gilbert.pellegrom.me) from
93
-
[Dev7studios](https://dev7studios.co). Released under the MIT license.
93
+
[Dev7studios](https://dev7studios.co). Released under the MIT license.
0 commit comments