Search code examples
laravellaravel-excellaravel-storage

Image not found on <img src={{ asset(...) }}


This is my blade Looks like :

<img src="{{ asset('/assets/img/logo.png') }}"  alt="logo" width="60px" height="60px">

And here's my folder structure

img file

When i try to view the blade, its fine. But when i try to Export as PDF with Laravel-Excel, the error coming up

http://localhost:8000/assets/img/logo.png not found!

I already change asset() to url() and without laravel function but the error still coming, any suggestions?


Solution

  • Solved

    <img src="{{ public_path('assets/img/logo.png') }}" ... />