Files
onboard/routes/console.php
brusnitsyn f163b95663 2026.06.8
2026-06-18 17:45:41 +09:00

16 lines
555 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Schedule;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
// Каждый день в 08:59 — досоздаём отчёты отделениям, у которых нет отчёта за текущую смену
Schedule::command('duty:autofill')
->dailyAt('08:59')
->timezone(config('app.timezone', 'Europe/Moscow'))
->withoutOverlapping();