|
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.
|
Produto |
Preço Un. |
Qt. |
Total |
@foreach ( $order->cart->products as $item )
 |
{{ $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
|
@endforeach
| Subtotal: |
{{ $order->total_products }}€ |
| Envio: |
{{ $order->total_shipping }}€ |
@if ( $order->total_discounts > 0 )
| Descontos: |
{{ $order->total_discounts }}€ |
@endif
@if ( !empty($order->promocode) )
| Cupão (Teste): |
3€ |
@endif
| Total: |
{{ $order->total }}€ |
|
|
Visitar Loja
|
|
|
|
@include('emails.layouts.footer')