Я загрузил файл PDF, и он не отображается на веб-сайте при нажатии на ссылку PDF - PullRequest
0 голосов
/ 11 июня 2019

Я загрузил ссылку pdf на веб-сайт, и при нажатии на ссылку файл pdf не отображается.

view

<div class="entry-content">

   <a  target="_blank" href="{{asset('$post->file')}}"><p style="font- 
      size: 
      18px;color: #468b10;">   {{ $post->content }}</p>
   </a>

</div>

controller

      public function show($id)

    {

        $file=Post::find($id);

        $content = base64_decode($file->content);

        return response($content)->header('Content-Type', $file->file);
}

public functionstore (запрос $ request) {

if (request ('file'))

{

        $file = request('file');

        $file_name = time() . $file->getClientOriginalName();

        $file->move('uploads/posts', $file_name);

        $data['file'] = 'uploads/posts/'.$file_name;

    }

}

...