I want to display a pdf from my public/files/filename in a blade file without downloading it. Visitors can see the pdf. I am using laravel 8 for this project.
This is the code but it is downloading the file without viewing it
 <embed src="{{ asset('files/hiring-process.pdf')  }}" type="application/pdf" width="100%" height="500px" />
 
    