10 lines
313 B
PHP
10 lines
313 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command('demo:reset')->twiceDaily();
|
|
Schedule::command('horizon:snapshot')->everyFiveMinutes();
|
|
Schedule::command('budgets:generate-periods')->daily();
|
|
Schedule::command('banking:sync')->everySixHours();
|
|
Schedule::command('banks:check-logos')->weekly();
|