@push('styles') @endpush
@if ($products->count() > 0)
@foreach ($products as $product)
{{-- Imagen si existe --}} @if (!empty($product->image_path)) {{ $product->description }} @else
Sin imagen
@endif

{{ $product->name }}

{{-- Precio --}} @if (!empty($product->price))

${{ number_format($product->price, 2, ',', '.') }}

@endif {{-- Botón --}} Ver +
@endforeach
@else

No hay productos disponibles.

@endif
{{ $products->links() }}
@push('scripts') @endpush