In your blade file you can embed the PDF file like so
<embed src="{{ asset('path-to-uploaded-file') }}" width="600" height="500" alt="pdf" />
If you want to display the PDF file in the browser you can add a button that redirects to
return response()->file($pathToFile);
return response()->file($pathToFile, $headers);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…