In my Laravel website image name is
images/campaign/4965d649233e1436ece21804ff4eb62b.jpeg
Actual image path is http://localhost/fund/storage/app/images/campaign/4965d649233e1436ece21804ff4eb62b.jpeg
But in my blade template when I use this path it automatically converted into
http://localhost/fund/storage/app/images%2Fcampaign%2F4965d649233e1436ece21804ff4eb62b.jpeg
That's why my image is not shown.
Img src code in blade template
src="{{url('/storage/app',$response->large_image)}}"
Why / is automatically replaced by %2F and how to solve it?
Anyone help please?
{!! $image_name !!}or like{{ $image_name }}? - Douwe de Haan{{ $image_name }}- Arafat Rahman