@if ($products->count() > 0)
@foreach ($products as $product)
{{-- Imagen si existe --}} @if (!empty($product->image_path)) {{ $product->name }} @else
Sin imagen
@endif {{-- Nombre --}}

{{ $product->name }}

{{-- Descripción corta --}}
@if (!empty($product->description))

{{ $product->description }}

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

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

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

No hay productos disponibles.

@endif
{{ $products->links() }}