How can I display a PDF in a Laravel View like I can display a normal image?
The code I am using to implement an image is:
<div class="u-img">
    <img 
        src="image/{{ Auth::user()->photo_jpeg }}" 
        alt="profile"
    />
</div>
What options/HTML-tags can I use to display a PDF?
 
     
    