option('date') ?: now()->toDateString(); $this->info("자동 결근 처리 시작: {$date}"); $count = $service->markAbsentees($date); if ($count > 0) { $this->info("{$count}명 결근 처리 완료"); } else { $this->info('결근 처리 대상이 없습니다 (주말이거나 모든 사원에 기록이 있음)'); } return self::SUCCESS; } }