Goal : If the file exist, load the file, else load the default.png
.
I load an image base on my user account id. Example. 1002.png
image tag
<img src="/images/photos/account/{{Auth::user()->account_id}}.png" alt="">
I've tried
@if(file_exists(public_path().'/images/photos/account/{{Auth::user()->account_id}}.png'))
<img src="/images/photos/account/{{Auth::user()->account_id}}.png" alt="">
@else
<img src="/images/photos/account/default.png" alt="">
@endif
Result
It kept load my default image. While I'm 100% sure that 1002.png
is exist.
How do I properly check if that file is exist ?
from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/1ImQAru
via IFTTT
Aucun commentaire:
Enregistrer un commentaire