@extends('layouts.horizontal', ['title' => 'Return Note', 'topbarTitle' => 'Return Note', 'nonav' => true]) @section('css') @endsection @section('content')
| SubTotal | {{config('constants.CURRENCY')}} {{($subtotal)}} |
| Product Discount | {{config('constants.CURRENCY')}} {{($totalproduct_discount)}} |
| Invoice Discount {{($order[0]['invoice_discount_perc'] ?? 0)}}% | {{config('constants.CURRENCY')}} {{($order[0]['invoice_discount'] ?? 0)}} |
| Other Charges | {{config('constants.CURRENCY')}} {{($order[0]['invoice_other_charges'] ?? 0)}} |
| Amount Exclusive of Taxes | {{config('constants.CURRENCY')}} {{( ((($order[0]['invoice_other_charges'] ?? 0)+$total_price_bf_tax) - ($order[0]['invoice_discount'] ?? 0) ))}} |
| Amount of Product Sales Tax | {{config('constants.CURRENCY')}} {{($total_tax)}} |
| Amount of Sales Taxes {{($order[0]['invoice_sales_tax_perc'] ?? 0)}}% | {{config('constants.CURRENCY')}} {{($order[0]['invoice_sales_tax'] ?? 0)}} |
| Amount Inclusive of Taxes | {{config('constants.CURRENCY')}} {{($order[0]['invoice_total_receivable'] ?? 0)}} |