@php $advert_type_id = $advert['advert_type']; $prod_typeid = $advert['prodsvc_id']; @endphp @foreach($advert['details'] as $detail)
{{ $detail['equip_catid_des'] }}
{{ $detail['equip_qty'] }}
@if($advert_type_id == 'SELLER')
@php $price = ($detail['equip_price'] == '0.00') ? 'Not given' : number_format($detail['equip_price'],2); @endphp
{{ $price }}
@endif
@php if(isset($detail['equip_desc'])){ $comment = $detail['equip_desc']; }else{ $comment = $detail['equip_desc']; } @endphp
{{ $comment }}
@if($advert_type_id == 'SELLER') @if(!empty($detail['image_path']))
@foreach($detail['image_path'] as $imageview) @endforeach
@endif @endif
@endforeach