i'm using Laravel for my application, i want to show a PDF file in view
i know i have to use <embed> or <iframe> but when i use this tags, i can't see my PDF file in my view and it will download automatic, i dont want to download file, just need to see PDF file content.
this is my view :
<div class="row justify-content-center">
     <div id="detail_div_a4">                      
          <embed src="{{ $letter->image }}" type="application/pdf" width="100%" height="600px">
      </div>
</div>
src return my PDF file location in $letter->image
thank you for your helps <3
 
    