Files
isaaccladandCursor 0770faaa9f
Deploy Ladill Queue / deploy (push) Successful in 42s
Add Queue Pro billing, renewal, and scheduler.
Organizations can upgrade from wallet with plan expiry enforcement and nightly qms:pro-renew charges.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-30 01:07:24 +00:00

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();