@extends('layouts.app') @section('content')
@if($discounting_amount == null) @if($invoice->count()) @else @endif @endif
@csrf
New Invoice
Product Name
Quantity
GH₵
price
GH₵
Total Price
Status
@if($invoice_number == null) @else @endif
Invoice ID
@if(auth()->user()->sales_person_category == "Delivery")
@else
@endif
@foreach($invoice as $invoice) @endforeach
Invoice Details
Product Quantity Price Amount (Net) Actions
GH₵
GH₵
 

Subtotal

Discount

VAT

Total Amount

@convert($total_cost_invoice)

GHS 0,00

GH₵0.00

@if($discounting_amount == null)
GH₵@convert($total_cost_invoice)
@else
GH₵ @convert($discounting_amount->amount_paid)
@endif
@endsection