blob: aec12cd65fa629d62936eb1afe06dbfead2e140c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
return [
/*
* Set the table to be used for monitoring data.
*/
'table' => 'queue_monitor',
/*
* Set the model used for monitoring.
* If using a custom model, be sure to implement the
* romanzipp\QueueMonitor\Models\Contracts\MonitorContract
* interface or extend the base model.
*/
'model' => \romanzipp\QueueMonitor\Models\Monitor::class,
/*
* The optional UI settings.
*/
'ui' => [
/*
* Set the monitored jobs count to be displayed per page.
*/
'per_page' => 35,
/*
* Show custom data stored on model
*/
'show_custom_data' => true,
],
];
|