{{ setting('store_name') }}

{{ trans('order::print.invoice') }}
#{{ $order->id }}
{{ $order->created_at->format('Y / m / d') }}
{{ trans('order::print.order_details') }}
@if ($order->shipping_method) @endif
{{ trans('order::print.email') }}: {{ $order->customer_email }}
{{ trans('order::print.phone') }}: {{ $order->customer_phone }}
{{ trans('order::print.shipping_method') }}: {{ $order->shipping_method }}
{{ trans('order::print.payment_method') }}: {{ $order->payment_method }} @if($order->payment_method==='Bank Transfer')
{{setting('bank_transfer_instructions')}} @endif
{{ trans('order::print.shipping_address') }}
{{ $order->shipping_full_name }} {{ $order->shipping_address_1 }} {{ $order->shipping_address_2 }} {{ $order->shipping_city }}, {{ $order->shipping_state_name }} {{ $order->shipping_zip }} {{ $order->shipping_country_name }}
{{ trans('order::print.billing_address') }}
{{ $order->billing_full_name }} {{ $order->billing_address_1 }} {{ $order->billing_address_2 }} {{ $order->billing_city }}, {{ $order->billing_state_name }} {{ $order->billing_zip }} {{ $order->billing_country_name }}
@foreach ($order->products as $product) @endforeach
{{ trans('order::print.product') }} {{ trans('order::print.unit_price') }} {{ trans('order::print.quantity') }} {{ trans('order::print.line_total') }}
{{ $product->name }} @if ($product->hasAnyOption())
@foreach ($product->options as $option) {{ $option->name }}: @if ($option->option->isFieldType()) {{ $option->value }} @else {{ $option->values->implode('label', ', ') }} @endif @endforeach
@endif
{{ $product->unit_price->convert($order->currency, $order->currency_rate)->convert($order->currency, $order->currency_rate)->format($order->currency) }} {{ $product->qty }} {{ $product->line_total->convert($order->currency, $order->currency_rate)->format($order->currency) }}
@if ($order->hasShippingMethod()) @endif @if ($order->hasCoupon()) @endif @foreach ($order->taxes as $tax) @endforeach
{{ trans('order::print.subtotal') }} {{ $order->sub_total->convert($order->currency, $order->currency_rate)->format($order->currency) }}
{{ $order->shipping_method }} {{ $order->shipping_cost->convert($order->currency, $order->currency_rate)->format($order->currency) }}
{{ trans('order::orders.coupon') }} ({{ $order->coupon->code }}) –{{ $order->discount->convert($order->currency, $order->currency_rate)->format($order->currency) }}
{{ $tax->name }} {{ $tax->order_tax->amount->convert($order->currency, $order->currency_rate)->format($order->currency) }}
{{ trans('order::print.total') }} {{ $order->total->convert($order->currency, $order->currency_rate)->format($order->currency) }}