start_date = $start_date; $this->end_date = $end_date; } /** * Execute the job. * * @return void */ public function handle() { return \Excel::download( new ReportFormExport($this->start_date, $this->end_date), $this->start_date.'至'.$this->end_date.'福恋报表.xlsx'); } }