mooxphp/moox

View on GitHub
packages/jobs/config/jobs.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Navigation Sort
    |--------------------------------------------------------------------------
    |
    | This value is the sort order of the navigation item in the
    | Filament Admin Panel. If you use a bunch of Moox
    | plugins, everything should be in order.
    |
    */

    'navigation_sort' => 5001,

    /*
    |--------------------------------------------------------------------------
    | Pruning
    |--------------------------------------------------------------------------
    |
    | This configuration is used to enable or disable pruning of old jobs.
    |
    */

    'pruning' => [
        'enabled' => true,
        'retention_days' => 7,
    ],

];