Deploy Ladill Queue / deploy (push) Successful in 42s
Organizations can upgrade from wallet with plan expiry enforcement and nightly qms:pro-renew charges. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
471 B
PHP
14 lines
471 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('qms:mark-devices-offline')->everyFiveMinutes();
|
|
Schedule::command('qms:send-appointment-reminders')->everyFifteenMinutes();
|
|
Schedule::command('qms:pro-renew')->dailyAt('02:40')->withoutOverlapping();
|