user()->company(), $request->all()); $csv = $export->run(); $headers = array( 'Content-Disposition' => 'attachment', 'Content-Type' => 'text/csv', ); return response()->streamDownload(function () use ($csv) { echo $csv; }, $this->filename, $headers); } }