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

{{ $prod->name }}

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

{{ $prod->description }}

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

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

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

No hay productos disponibles.

@endif