api.so-manager-dev.com/routes/console.php
unhi.go e1073e2577
All checks were successful
Deploy api / deploy (push) Successful in 24s
SH-6 SHJ-9 実装
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 20:16:47 +08:00

25 lines
771 B
PHP
Raw 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');
// 支払期限切れチェック15分毎
Schedule::command('payment:expire')->everyFifteenMinutes();
// SHJ-2 データバックアップ(毎日 02:45
Schedule::command('shj:2')->dailyAt('02:45');
// SHJ-5 駐輪場空きチェック毎月20日 11:00
Schedule::command('shj:5')->monthlyOn(20, '11:00');
// SHJ-6 サーバ死活監視15分毎
Schedule::command('shj:6')->everyFifteenMinutes();
// SHJ-9 売上集計(日次)(毎日 02:00
Schedule::command('shj:9')->dailyAt('02:00');