Deploy Ladill Frontdesk / deploy (push) Successful in 58s
Monthly auto-renew charges due organizations from the Ladill wallet and downgrades after grace when payment fails. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
698 B
PHP
17 lines
698 B
PHP
<?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');
|
|
|
|
Schedule::command('frontdesk:mark-overdue-visits')->everyFiveMinutes();
|
|
Schedule::command('frontdesk:mark-expired-badges')->everyFifteenMinutes();
|
|
Schedule::command('frontdesk:mark-devices-offline')->everyFiveMinutes();
|
|
Schedule::command('frontdesk:employee-return-alerts')->everyFiveMinutes();
|
|
Schedule::command('frontdesk:send-daily-reports')->dailyAt('07:00');
|
|
Schedule::command('frontdesk:pro-renew')->dailyAt('02:15')->withoutOverlapping();
|