如何在视图中显示存储中的pdf文件

时间:2019-06-25 15:18:57

标签: php laravel

我研究了如何在刀片中显示pdf文件。我找到了这个答案。但是我应该在刀片服务器上做什么才能显示文件?

  $filename = 'test.pdf';
  $path = storage_path($filename); 

  return Response::make(file_get_contents($path), 200, [
      'Content-Type'
  => 'application/pdf',


  'Content-Disposition' => 'inline; filename="'.$filename.'"'

如何在刀片中显示结果(pdf)?

1 个答案:

答案 0 :(得分:0)

<iframe src="path_of_pdf_file" width ="100%" height="600px"></iframe>