芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Console/Kernel.php
command('update-exchange-rate')->daily()->timezone($timezone); $schedule->command('auto-stop-timer')->dailyAt('23:59')->timezone($timezone); $schedule->command('send-event-reminder')->everyMinute(); $schedule->command('send-project-reminder')->daily()->timezone($timezone); $schedule->command('hide-cron-message')->everyMinute(); $schedule->command('send-auto-task-reminder')->daily()->timezone($timezone); $schedule->command('recurring-invoice-create')->daily()->timezone($timezone); $schedule->command('recurring-expenses-create')->daily()->timezone($timezone); $schedule->command('clear-null-session')->hourly(); $schedule->command('send-invoice-reminder')->daily()->timezone($timezone); $schedule->command('queue:work --tries=3 --stop-when-empty')->withoutOverlapping(); $schedule->command('delete-seen-notification')->daily()->timezone($timezone); $schedule->command('send-attendance-reminder')->everyMinute(); $schedule->command('recurring-task-create')->dailyAt('23:59')->timezone($timezone); $schedule->command('sync-user-permissions')->everyMinute(); $schedule->command('create-database-backup')->hourly(); $schedule->command('delete-database-backup')->hourly(); $schedule->command('send-auto-followup-reminder')->everyMinute(); $schedule->command('fetch-ticket-emails')->everyMinute(); $schedule->command('add-missing-permissions')->everyThirtyMinutes(); $schedule->command('birthday-notification')->dailyAt('09:00')->timezone($timezone); $schedule->command('logcleaner:run')->daily(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); } }