Answers for "how to retrieve photo from public with the asset laravel"

PHP
20

store image in public folder laravel 8

php artisan storage:link
Posted by: Guest on March-13-2020
3

set image asset path in laravel

//Assets in app/public
// in image
<img src="{{URL::asset('/images/logo.jpg')}}"/>
// in div style
<div style="background-image: url({{URL::asset('images/image.jpg')}});">
</div>
Posted by: Guest on February-01-2022

Code answers related to "how to retrieve photo from public with the asset laravel"

Browse Popular Code Answers by Language