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

后端 未结 10 996
陌清茗
陌清茗 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 11:15

    Laravel 5.6.*

    $name = 'file.jpg';
    

    store on image or pdf

    $file->storeAs('public/', $name );
    

    download image or pdf

    return response()->download($name);
    

    view image or pdf

    return response()->file($name);
    

提交回复
热议问题