api.so-manager-dev.com/routes/console.php
Your Name 41814dd908
All checks were successful
Deploy api / deploy (push) Successful in 23s
SHJ-4 SHJ-5 SHJ-6 変更点実装
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 19:25:40 +09:00

16 lines
473 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-5 駐輪場空きチェック毎月20日 11:00
Schedule::command('shj:5')->monthlyOn(20, '11:00');