Hello {{ $user->name }},

{{ __('You left some items in your cart. Here\'s a reminder:') }}

@foreach($items as $item) @endforeach
{{ $item->product->name ?? 'Product' }} x {{ $item->quantity }} {{ currencySymbol() }} {{ number_format(convertCurrency($item->price * $item->quantity), 2) }}

{{ __('messages.total') }}: {{ currencySymbol() }} {{ number_format(convertCurrency($total), 2) }}

{{ __('Go to Cart') }}