|
|
{{__("Invoice")}} : #{{ $order['ref_id'] ?? "ID"}}
{{__("Created At")}} : {{ format_date($order['created_at'],__("d-m-Y à H:i:s")) }}
{{__('Due At')}} : {{ format_date($order['updated_at'],__("d-m-Y à H:i:s")) }}
|
|
{{getSettingsOf("site_title")}}
- {{getSettingsOf("adress")}}
- {{getSettingsOf("adress2")}}
|
|
{{ $user['full_name'] }}
{{ $user['phone'] }}
{{ $user['email'] }}
|
|
| {{__("Payments")}} |
|
{{__("Check #")}} |
| {{ __('N/A') }} |
|
{{format_amount($order['total'],$currency_symbol) }} |
| {{__("Product")}} |
{{__("Price")}} |
{{__("Quantity")}} |
{{__("Amount")}} |
@foreach($items as $item)
| {{ $item["product"]['name'] }} |
{{ format_amount($item['price']) }} |
{{ format_amount($item['quantity']) }} |
{{ format_amount($item['amount'],$currency_symbol) }} |
@endforeach
|
{{__("Subtotal")}} : |
{{ format_amount($order['subtotal'],$currency_symbol)}} |
|
{{__("Discount")}} : |
{{ format_amount($order['discount'],$currency_symbol) }} |
|
{{__("Tax")}} : |
{{ format_amount($order['tax'],$currency_symbol) }} |
|
{{__("Shipping")}} : |
{{ format_amount($order['shipping'],$currency_symbol) }} |
|
{{__("Total")}} : |
{{ format_amount($order['total'],$currency_symbol)}} |