@include('header') @foreach($prodlist as $a) @php $productList=json_decode($a->products,true); @endphp

{{$a->catname}}

@foreach($productList as $b)
{{$b['name']}} @if($b['classname']!='')
{{$b['classname']}}
@endif

{{$b['name']}}

{{$b['brandname']}}

{{'$'.number_format($b['price'],2)}}
VIEW MORE
@endforeach
@endforeach @include('footer')