@extends('frontend.layouts.master') @section('content')

Productos | Biker Zone Store

@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 @if (count($products) === 0)

No se encontró ningún producto!

@endif
@if ($products->hasPages())
{{ $products->links() }}
@endif
@endsection