Advertisement
Guest User

Untitled

a guest
May 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. @foreach($SubCategories as $SubCategory)
  2.       <li>
  3.           <figure>
  4.                   <div><img src="pictures/images/{{$SubCategory->image}}" alt="img05"></div>
  5.                   <figcaption>
  6.                        <h3>{{$SubCategory->category}}</h3>
  7.                        <br>
  8.                        {{--{{$SubCategory->subcategory}}--}}
  9.                        @foreach(json_decode($SubCategory->subcategory,true) as $lala)
  10.                                        
  11.                                 <li> {{$lala->[0]}} </li>
  12.                        @endforeach
  13.                        <div class="take_a_look"><a href="{{URL::to('/categories')}}">Take a look</a></div>
  14.                   </figcaption>
  15.          </figure>
  16.      </li>
  17. @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement