@extends('layouts.app') @section('content')
@csrf @foreach ($response['invNumbers'] as $key=>$value) @endforeach
Name Mobile {{$response['invoice']->mobile}} Balance {{$response['invoice']->balance+$response['invoice']->opening_balance}}
Invoice No. Invoice Date
Voucher Type Bill Type
Product Name Qty Price Discunt(%)
@foreach ($response['invoiceProduct'] as $item) @endforeach
Action Product Name Price Qty Total Price Discunt(%) Total Discount Price After Discount
Remove {{$item->price*$item->qty}} {{($item->price*$item->qty)*($item->discount/100)}} {{$item->price*$item->qty-(($item->price*$item->qty)*($item->discount/100))}}
Total Amount Grand Total Amount
Discount Paid Amount
SGST - {{$response['invoice']->sgst}}% After Bill Outstading Amount
IGST - {{$response['invoice']->igst}}% Print Format
CGST - {{$response['invoice']->cgst}}%
Courier Charges
@endsection @section('script') @endsection