@if($product->isEmpty())

No data found.

@else @php $shownProducts = []; @endphp @foreach($product as $item)
@if(!empty($item->bulk_images) && is_array(json_decode($item->bulk_images, true))) @foreach(json_decode($item->bulk_images, true) as $image) @endforeach @else @endif
{{ $item->name ?? ''}}
@if(isset($item->selling_price) && $item->selling_price != 0) Rs. {{ $item->mrp ?? ''}} Rs. {{ $item->selling_price ?? ''}} @else Rs. {{ $item->mrp ?? ''}} @endif
@endforeach @endif