php - Laravel-excel File not found -
i have photo located under link:
i'm trying include in excel file have error.
i try this:
<img src="/photos/{{$car->lot_id}}/2.jpg" width="30" height="30">
it returns error:
file /photos/391987500/2.jpg not found!
i try this:
<img src="{{ public_path() . '/photos/' . $car->lot_id . '/2.jpg'}}" width="200" height="200">
it returns error:
file /users/apple/projects/asystem/public/photos/391991903/2.jpg not found!
i try this:
<img src="{{ asset('/photos/' . $car->lot_id . '/2.jpg')}}" width="200" height="200">
and returns error:
file http://127.0.0.1:8000/photos/391987500/2.jpg not found!
how can done?
finally, it! no need for/
need <img src="photos/{{$car->lot_id}}/2.jpg" width="30" height="30">
sorry, bad
wiki
Comments
Post a Comment