BIKER ZONE STORE

Lo más popular

shapes

Explora nuestra selección premium: Cascos, accesorios y repuestos de calidad para motos y motocicletas. ¡Potencia tu viaje con lo mejor en Biker Zone!

@foreach ($categories as $category) @php $products = \App\Models\Product::where(['show_at_home' => 1, 'status' => 1, 'category_id' => $category->id]) ->orderBy('id', 'DESC') ->take(8) ->withAvg('reviews', 'rating') ->withCount('reviews') ->get(); @endphp @foreach ($products as $product)
@if ($product->reviews_avg_rating)

@for ($i = 1; $i <= $product->reviews_avg_rating; $i++) @endfor {{ $product->reviews_count }}

@endif {{ $product->name }}
@if ($product->offer_price > 0) {{ currencyPosition($product->offer_price) }} {{ currencyPosition($product->price) }} @else {{ currencyPosition($product->price) }} @endif
@endforeach @endforeach