Am storing the image location url to my database column called images. and the are in this form… [“http://kizflex.local/properties/10.jpg”,”http://kizflex.local/properties/11.jpg”]
So how can i iterate through this particular column so as to get each address and display it in my view? Please am stuck i need help.
@foreach($properties->all() as $property)
<h1>{{$property->property_title}}</h1>
@foreach (json_decode($property->property_image, true) as $image)
<img src="{{ $image[0] }}" alt="" width="100%">
@endforeach
@endforeach