{{ __('shop::app.mail.invoice.heading', ['order_id' => $order->increment_id, 'invoice_id' => $invoice->id]) }}
{{ __('shop::app.mail.order.dear', ['customer_name' => $order->customer_full_name]) }},
{!! __('shop::app.mail.order.greeting', [
'order_id' => '#' . $order->increment_id . '',
'created_at' => $order->created_at
])
!!}
{{ __('shop::app.mail.order.subtotal') }}
{{ core()->formatPrice($invoice->sub_total, $invoice->order_currency_code) }}
{{ __('shop::app.mail.order.shipping-handling') }}
{{ core()->formatPrice($invoice->shipping_amount, $invoice->order_currency_code) }}
{{ __('shop::app.mail.order.tax') }}
{{ core()->formatPrice($invoice->tax_amount, $invoice->order_currency_code) }}
@if ($invoice->discount_amount > 0)
{{ __('shop::app.mail.order.discount') }}
{{ core()->formatPrice($invoice->discount_amount, $invoice->order_currency_code) }}
@endif
{{ __('shop::app.mail.order.grand-total') }}
{{ core()->formatPrice($invoice->grand_total, $invoice->order_currency_code) }}