@if ( empty( ns()->option->get( 'ns_invoice_receipt_logo' ) ) )

{{ ns()->option->get( 'ns_store_name' ) }}

@else {{ ns()->option->get( 'ns_store_name' ) }}

{{ ns()->option->get( 'ns_store_name' ) }}

@endif
{!! nl2br( $ordersService->orderTemplateMapping( 'ns_invoice_receipt_column_a', $order ) ) !!}
{!! nl2br( $ordersService->orderTemplateMapping( 'ns_invoice_receipt_column_b', $order ) ) !!}
@foreach( Hook::filter( 'ns-receipt-products', $order->combinedProducts ) as $product ) @endforeach
{{ __( 'Product(s)' ) }} {{ __( 'Qty.' ) }} {{ __( 'Total' ) }}
{{ $product->name }} {{ $product->quantity }} {{ ns()->currency->define( $product->total_price ) }}
@if ( $order->discount > 0 ) @endif @if ( $order->total_coupons > 0 ) @endif @if ( ns()->option->get( 'ns_invoice_display_tax_breakdown' ) === 'yes' ) @foreach( $order->taxes as $tax ) @endforeach @if ( $order->products_tax_value > 0 ) @endif @else @if ( $order->tax_value > 0 ) @elseif ( $order->products_tax_value > 0 ) @endif @endif @if ( $order->shipping > 0 ) @endif @foreach( $order->payments as $payment ) @endforeach @if ( in_array( $order->payment_status, [ 'refunded', 'partially_refunded' ]) ) @foreach( $order->refund as $refund ) @endforeach @endif @switch( $order->payment_status ) @case( Order::PAYMENT_PAID ) @break @case( Order::PAYMENT_PARTIALLY ) @break @endswitch
{{ __( 'Sub Total' ) }} {{ ns()->currency->define( $order->subtotal ) }}
{{ __( 'Discount' ) }} @if ( $order->discount_type === 'percentage' ) ({{ $order->discount_percentage }}%) @endif {{ ns()->currency->define( $order->discount ) }}
{{ __( 'Coupons' ) }} {{ ns()->currency->define( $order->total_coupons ) }}
{{ $tax->tax_name }} — {{ $order->tax_type === 'inclusive' ? __( 'Inclusive' ) : __( 'Exclusive' ) }} {{ ns()->currency->define( $tax->tax_value ) }}
{{ $order->tax_type === 'inclusive' ? __( 'Inclusive Product Taxes' ) : __( 'Exclusive Product Taxes' ) }} {{ ns()->currency->define( $order->products_tax_value ) }}
{{ __( 'Taxes' ) }} {{ ns()->currency->define( $order->tax_value ) }}
{{ $order->tax_type === 'inclusive' ? __( 'Inclusive Product Taxes' ) : __( 'Exclusive Product Taxes' ) }} {{ ns()->currency->define( $order->products_tax_value ) }}
{{ __( 'Shipping' ) }} {{ ns()->currency->define( $order->shipping ) }}
{{ __( 'Total' ) }} {{ ns()->currency->define( $order->total ) }}
{{ $paymentTypes[ $payment[ 'identifier' ] ] ?? __( 'Unknown Payment' ) }} {{ ns()->currency->define( $payment[ 'value' ] ) }}
{{ __( 'Paid' ) }} {{ ns()->currency->define( $order->tendered ) }}
{{ __( 'Refunded' ) }} {{ ns()->currency->define( - $refund->total ) }}
{{ __( 'Change' ) }} {{ ns()->currency->define( $order->change ) }}
{{ __( 'Due' ) }} {{ ns()->currency->define( abs( $order->change ) ) }}
@if( $order->note_visibility === 'visible' )
{{ __( 'Note: ' ) }} {{ $order->note }}
@endif
Save Gold
SGM Plan 10,000
Fees Status Not Paid
SaveGold 50% in PKR 10% {{ calculateDemoSaveGold($order->total, 'gold') }}
ARY Coin Redeemable (PKR) {{ calculateDemoSaveGold($order->total, 'coin') }}
After Saving your Purchase cost {{ calculateDemoSaveGold($order->total, 'coin') }}
{{ ns()->option->get( 'ns_invoice_receipt_footer' ) }}
Powered By ARYTechPOS
For more information please visit https://arytech.io
@includeWhen( request()->query( 'autoprint' ) === 'true', '/pages/dashboard/orders/templates/_autoprint' )