@include('emails.layouts.header')
Logo

Encomenda #{{ $order->id }}

Obrigado {{ $order->billing_name }} {{ $order->billing_surname }},

Estamos a preparar a sua encomenda.

@foreach ( $order->cart->products as $item ) @endforeach @if ( $order->total_discounts > 0 ) @endif @if ( !empty($order->promocode) ) @endif
Produto Preço Un. Qt. Total
{{ $item->product->name[$locale] }} @if ( $item->discount_exist ) {{ $item->product_price_uni }}€
{{ $item->discount_price_uni }}€ @else {{ $item->product_price_uni }}€ @endif
{{ $item->quantity }} @if ( $item->discount_exist ) {{ $item->product_price_total }}€
{{ $item->discount_price_total }}€ @else {{ $item->product_price_total }}€ @endif
Subtotal: {{ $order->total_products }}€
Envio: {{ $order->total_shipping }}€
Descontos: {{ $order->total_discounts }}€
Cupão (Teste): 3€
Total: {{ $order->total }}€
Visitar Loja
@include('emails.layouts.footer')