@extends('layouts.app') @section('content')
@if(auth()->user()->sales_person_category == "Counter")
Scan Barcode
@endif
@csrf
Product Name*
Quantity*
Order Type
@if(empty($checkseesion))
@else @foreach($cartItems as $key => $cart) @endforeach
Invoice Details
Product Category Quantity Price Amount (Net) Actions
currency}}@convert($cart['invoice_unit_price'] * $cart['invoice_quantity'])">
 

Subtotal

Discount

VAT

Total Amount

@convert(empty($checkseesion) ? 0 : $totalCart)

@if(empty(session()->get('discount'))) {{empty($app->currency) ? "GHS" : $app->currency}}0.00 @else @if(session()->get('discount')['type'] == "Cash") {{ empty($app->currency) ? "GHS" : $app->currency}} {{session()->get('discount')['discount']}} @elseif(session()->get('discount')['type'] == "Percentage") {{ session()->get('discount')['discount'] . "%"}} @endif @endif

{{empty($app->currency) ? "GHS" : $app->currency}}0.00

@if(empty(session()->get('discount')))
{{empty($app->currency) ? "GHS" : $app->currency}}@convert(empty($checkseesion) ? 0 : $totalCart)
@else @if(session()->get('discount')['type'] == "Percentage")
{{empty($app->currency) ? "GHS" : $app->currency}} @convert( $totalCart * ((100 - session()->get('discount')['discount']))/100)
@else
{{empty($app->currency) ? "GHS" : $app->currency}} @convert( $totalCart - session()->get('discount')['discount'] )
@endif @endif
@endif