<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ramdank / filament-spatie-laravel-backup example snippets
return [
/*
|--------------------------------------------------------------------------
| Pages
|--------------------------------------------------------------------------
|
| This is the configuration for the general appearance of the page
| in admin panel.
|
*/
'pages' => [
'backups' => \ShuvroRoy\FilamentSpatieLaravelBackup\Pages\Backups::class
],
/*
|--------------------------------------------------------------------------
| Polling
|--------------------------------------------------------------------------
|
| This is the configuration for the interval seconds between
| polling requests.
|
*/
'polling' => [
'interval' => '4s'
],
/*
|--------------------------------------------------------------------------
| Queue
|--------------------------------------------------------------------------
|
| Queue to use for the jobs to run through.
|
*/
'queue' => null,
];