@php
$items = [
['name' => 'Infusión de Lavanda', 'price' => 12.50, 'qty' => 1, 'img' => 'https://images.unsplash.com/photo-1594631252845-29fc4586d51c?auto=format&fit=crop&q=80&w=200'],
['name' => 'Aceite de Eucalipto', 'price' => 18.90, 'qty' => 2, 'img' => 'https://images.unsplash.com/photo-1611080626919-7cf5a9dbab5b?auto=format&fit=crop&q=80&w=200'],
];
@endphp
@foreach($items as $item)
{{ $item['name'] }}
Cantidad: {{ $item['qty'] }}
{{ number_format($item['price'], 2) }}€
{{ number_format($item['price'] * $item['qty'], 2) }}€
@endforeach
@if(empty($items))
Tu carrito está vacío.
Ir a la tienda
@endif