@include('layouts.header')

Showing 1–9 of 41 results

@if($colors) @foreach($colors as $color) @endforeach @endif
@if($sizes) @foreach($sizes as $size) @endforeach @endif
@if($product->isEmpty())

No data found.

@else @foreach($product as $item)
@php $images = json_decode($item->bulk_images, true); // true = array @endphp {{ $item->name ?? ''}} @if(!empty($images) && isset($images[0])) {{ $images[0] }} @endif

{{ ucwords($item->name ?? '')}}

@if(isset($item->selling_price) && $item->selling_price != 0) ₹{{ $item->selling_price ?? ''}} ₹{{ $item->mrp ?? ''}}

save {{ rtrim(rtrim(number_format($item->discount, 2, '.', ''), '0'), '.') }}% @else Rs. {{ $item->mrp ?? ''}} @endif

Add to Cart
@endforeach @endif
@if(!$product->isEmpty())
  • PREV
  • @foreach ($product->getUrlRange(1, $product->lastPage()) as $page => $url)
  • {{ $page }}
  • @endforeach
  • Next
@endif
@include('layouts.footer')