response = $stream; } public function stream(string $filename = 'document.pdf'): Response { $output = $this->response->getBody(); return new Response($output, 200, [ 'Content-Type' => 'application/pdf', 'Content-Disposition' => 'inline; filename="'.$filename.'"', ]); } public function output(): string { return $this->response->getBody()->getContents(); } }