@extends('layouts.shop') @section('title', 'Catálogo | BasePro Shop') @section('content')

Catálogo de Productos

Explora nuestra selección exclusiva. Calidad premium diseñada para tu estilo de vida.

@if(request('category')) @endif @if(request('brand')) @endif @if(request('search')) @endif @if(request('on_sale')) @endif
@if($products->isEmpty())
No se encontraron productos con estos filtros.
@else
@foreach($products as $product)
@if($product->image_path) {{ $product->name }} @else
@endif
@if($product->compare_price && $product->compare_price > 0) @php $discount = round((($product->compare_price - $product->price) / $product->compare_price) * 100); @endphp
Oferta -{{ $discount }}%
@endif @if($product->brand)
{{ $product->brand->name }}
@endif
@if($product->category)
{{ $product->category->name }}
@endif

{{ $product->name }}

@if($product->compare_price) ${{ number_format($product->compare_price, 2) }} @endif ${{ number_format($product->price, 2) }}
@endforeach
{{ $products->links() }}
@endif
@push('scripts') @endpush @endsection