mailingForm->setReport($this->report); } public function download() { $filePath = $this->report->project->download_path . '/' . $this->report->path; if (!Storage::exists($filePath)) { abort(404); } return Storage::download($filePath); } public function createMailing() { $this->mailingForm->save(); $this->reset('createMailingModal'); } }