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