Olá, {{$customer->name}}!

@php($country = \App\Shop\Countries\Country::find($address->country_id))

Este pedido é para entregar a: {{ ucfirst($address->alias) }}

Endereço: {{$address->address_1}} {{$address->address_2}} {{$address->city}} {{$address->state_code}}, {{$country->name}}

@foreach($products as $product) @endforeach
SKU Nome Descrição Quantidade Valor
{{$product->sku}} {{$product->name}} {!! $product->description !!} @php($pattr = \App\Shop\ProductAttributes\ProductAttribute::find($product->pivot->product_attribute_id)) @if(!is_null($pattr))
@foreach($pattr->attributesValues as $it)

{{ $it->attribute->name }} : {{ $it->value }}

@endforeach @endif
{{$product->pivot->quantity}} {{config('cart.currency_symbol')}} {{number_format($product->price * $product->pivot->quantity, 2)}}
Subtotal: {{config('cart.currency_symbol')}} {{number_format($order->total_products, 2)}}
Frete: {{config('cart.currency_symbol')}} {{number_format($order->total_shipping, 2)}}
Desconto: ({{config('cart.currency_symbol')}} {{number_format($order->discounts, 2)}})
Imposto: {{config('cart.currency_symbol')}} {{number_format($order->tax, 2)}}
Total: {{config('cart.currency_symbol')}} {{number_format($order->total, 2)}}