Laravel - display a PDF file in storage without forcing download?

后端 未结 10 1028
陌清茗
陌清茗 2020-12-02 10:31

I have a PDF file stored in app/storage/, and I want authenticated users to be able to view this file. I know that I can make them download it using

return          


        
10条回答
  •  情歌与酒
    2020-12-02 10:58

    In Laravel 5.5 you can just pass "inline" as the disposition parameter of the download function:

    return response()->download('/path/to/file.pdf', 'example.pdf', [], 'inline');
    

提交回复
热议问题