{{$customer->name}}
{{$customer->email}}
reference: {{$order->reference}}
Order Information
@if($order['total_paid'] != $order['total']) @endifData | Cliente | Pagamento | Status |
{{ date('M d, Y h:i a', strtotime($order['created_at'])) }} | {{ $customer->name }} | {{ $order['payment'] }} | |
Subtotal | {{ config('cart.currency_symbol') }} {{ $order['total_products'] }} | ||
Frete | {{ config('cart.currency_symbol') }} {{ $order['total_shipping'] }} | ||
Imposto | {{ config('cart.currency_symbol') }} {{ $order['tax'] }} | ||
Desconto | {{ config('cart.currency_symbol') }} {{ $order['discounts'] }} | ||
Valor total do pedido | {{ config('cart.currency_symbol') }} {{ $order['total'] }} | ||
Total pago | {{ config('cart.currency_symbol') }} {{ $order['total_paid'] }} |
Ooops, there is discrepancy in the total amount of the order and the amount paid.
Total order amount: {{ config('cart.currency') }} {{ $order->total }}
Total amount paid {{ config('cart.currency') }} {{ $order->total_paid }}
@if(!$items->isEmpty())
@endif
@endif
Items
@foreach($items as $item) @endforeachSKU | Name | Description | Quantity | Price |
---|---|---|---|---|
{{ $item->sku }} | {{ $item->name }} | {!! $item->description !!} | {{ $item->pivot->quantity }} | {{ $item->price }} |
Courier
Name | Description | Link |
---|---|---|
{{ $order->courier->name }} | {!! $order->courier->description !!} | {{ $order->courier->url }} |
Address
Address 1 | Address 2 | City | Province | Zip |
---|---|---|---|---|
{{ $order->address->address_1 }} | {{ $order->address->address_2 }} | @if(isset($order->address->city)) {{ $order->address->city }} @endif | @if(isset($order->address->province)) {{ $order->address->province }} @endif | {{ $order->address->zip }} |