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');
|
2026-03-19 19:03:57 +09:00
|
|
|
|
|
|
|
|
// 2시간마다 바로빌 카드 사용내역 자동 동기화 (영업시간 08~22시)
|
|
|
|
|
Schedule::command('barobill:sync-cards --days=7')
|
|
|
|
|
->everyTwoHours()
|
|
|
|
|
->between('08:00', '22:00')
|
|
|
|
|
->withoutOverlapping();
|