@extends('layouts.horizontal', ['title' => 'Create Order Invoice', 'topbarTitle' => 'Create Invoice']) @section('css') @vite(['node_modules/flatpickr/dist/flatpickr.min.css']) @vite(['node_modules/select2/dist/css/select2.min.css']) @endsection @section('content')
@php $subTotal=0; $row = 1; @endphp @foreach($order_products as $product) @php $subTotal = $subTotal + $product->price; @endphp @php $row++ @endphp @endforeach
... # Item Discription Staff Qty. Unit Price Discount Type Discount Addition SubTotal Tax Total
{{ $row }} {{ $product->business_brand_name }} {{ $product->product }} {!! $product->staff !!} {{ $product->product_sales_tax / 100 * $product->product_final_price }} {{ $product->product_final_price }}
Subtotal {{ config('constants.CURRENCY') }}
Total Before Tax
Sales Tax
Total Amount
CC Fee
CC Tip
POS Charges
Rounding Adjustment
Total Payable
Paying Now
Paid Cash
Paid Card
Loyalty Used
Retained Used
Voucher Used
Return Cash
Balance
Instrument # :
Verify Voucher# :
Payment Mode :
Customer Retained Amount: {{ config('constants.CURRENCY') }} {{ $retained_amount }}
Loyalty Points: {{ config('constants.CURRENCY') }} {{ $customer != null ? $customer->loyalty_points : 0 }}
@endsection @section('scripts') @endsection