@if ($setting->getTranslation('fav_icon')) @endif
|
|
{{ translate('INVOICE') }} |
| {{ $setting->getTranslation('site_name') }} | |
| {{ $setting->getTranslation('title') }} | |
| {{ translate('Email') }}: {{ $setting->email }} | {{ translate('Order ID') }}: {{ $order->code }} |
| {{ translate('Phone') }}: {{ $setting->phone }} | {{ translate('Order Date') }}: {{ $order->date }} |
| {{ translate('Invoice serial number') }}: {{ $order->commercial_register }} |
| {{ translate('Bill to') }}: |
| {{ $order->address->name }} |
| {{ $order->address->address }}, {{ $order->address->Province->Country->getTranslation('title') }}, {{ $order->address->Province->getTranslation('title') }} |
| {{ translate('Postal code') }}: {{ $order->address->postal_code }} |
| {{ translate('Phone') }}: {{ $order->address->phone }} |
| {{ translate('Product Name') }} | {{ translate('Qty') }} | {{ translate('Item price') }} | {{ translate('Total') }} |
|---|---|---|---|
| {{ $OrderProduct->product->getTranslation('title') }} | {{ $OrderProduct->quantity }} | {{ single_price($OrderProduct->price) }} | {{ single_price($OrderProduct->price * $OrderProduct->quantity) }} |
| {{ translate('The Amount') }} | {{ single_price($order->OrderProduct->sum('price')) }} {{ currency_sympol()['symbol'] }} |
|---|---|
| {{ translate('Taxes') }} | {{ single_price($order->tax) }} {{ currency_sympol()['symbol'] }} |
| {{ translate('Shipping') }} | {{ single_price($order->shipping_cost) }} {{ currency_sympol()['symbol'] }} |
| {{ translate('Coupon discount') }} | {{ single_price($order->coupon_discount) }} {{ currency_sympol()['symbol'] }} |
| {{ translate('Wallet discount') }} | {{ single_price($order->wallet_discount) }} {{ currency_sympol()['symbol'] }} |
| {{ translate('Total amount') }} | {{ single_price($order->total_price) }} {{ currency_sympol()['symbol'] }} |
| {{ translate('Instructions') }} |
|---|
| {{ $setting->getTranslation('invoice_instruction') }} |