batch
-
command + forge schedule(스케줄)Laravel 2022. 4. 11. 22:21
# What? - 서버에서 일정 시간마다 어떤 작업을 예약하고 싶다면 사용 # How? 1. 스케줄 생성 php artisan make:command RefundFailLetter 2. 실행할 내용 작성 @ RefundFailLetter protected $signature = 'refund:fail-letter'; protected $description = '발송실패건 환불'; public function __construct() { parent::__construct(); } public function handle() { $letters = Letter::where("finished", 1)->where("refunded", 0)->where("count_fail", ">", 0)->cursor(..