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
Since Laravel 5.2 you can use File Responses Basically you can call it like this:
return response()->file($pathToFile);
and it will display files as PDF and images inline in the browser.