19 lines
637 B
PHP
19 lines
637 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('attendance:mark-absent')->dailyAt('23:50');
|
|
|
|
// 2시간마다 바로빌 카드 사용내역 자동 동기화 (영업시간 08~22시)
|
|
Schedule::command('barobill:sync-cards --days=7')
|
|
->everyTwoHours()
|
|
->between('08:00', '22:00')
|
|
->withoutOverlapping();
|