php - Laravel-excel File not found -




i have photo located under link:

http://127.0.0.1:8000/photos/391987500/2.jpg

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

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -