@include('header')
@foreach($prodlist as $a)
@php
$productList=json_decode($a->products,true);
@endphp
{{$a->catname}}
@foreach($productList as $b)
![{{$b['name']}}]({{($b['img1']!='')?$b['img1']:$env_config->clientdomain.'assets/img/default.png'}})
@if($b['classname']!='')
{{$b['classname']}}
@endif
{{$b['name']}}
{{$b['brandname']}}
{{'$'.number_format($b['price'],2)}}
VIEW MORE
@endforeach
@endforeach
@include('footer')