order = $order; $this->start_date = $start_date; $this->end_date = $end_date; } /** * Execute the job. * * @return void */ public function handle() { ini_set('memory_limit','-1'); \App\Exports\ReportExport::export($this->order, $this->start_date, $this->end_date); } public function retryUntil() { return now()->addSeconds(87000); } }