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

Encomenda #{{ $order->id }}

Olá {{ $order->billing_name }} {{ $order->billing_surname }},

Obrigado pela sua escolha e confiança, estamos a preparar a sua encomenda. 😊

Receberá um novo email quando a sua encomenda for enviada.

@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[App::getLocale()] }} @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')