2025-11-20 16:24:40 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2026-02-26 20:56:25 +09:00
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2025-11-20 16:24:40 +09:00
|
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
|
$this->comment(Inspiring::quote());
|
|
|
|
|
})->purpose('Display an inspiring quote');
|
2026-02-26 20:56:25 +09:00
|
|
|
|
|
|
|
|
// 매일 23:50 자동 결근 처리
|
|
|
|
|
Schedule::command('attendance:mark-absent')->dailyAt('23:50');
|