@extends('VMS.navbar') @section('content')
Invoice Edit
@csrf
ENo.
EDate
Supplier Name
Inv No.
Inv Date
Add product
GRN No
Items
Quantity
Price(₹)
Disc
Tax %
Total Cost
Edit
--select--
@foreach($decode2 as $decodes4)
{{ $decodes4['grnNo'] }} / {{ $decodes4['Product_Name'] }} / {{ $decodes4['qty'] }}
@endforeach
0.00
@foreach ($decode as $decodes)
{{$decodes['netAmt'] }}
@endforeach @if ($message = Session::get('errorMsg'))
{{$message}}
@endif
Rate Debit
₹ {{ request('ratedebit') }}
Qty Debit
₹{{ request('qtydebit') }}
Total Debit
₹{{ request('tot_debit') }}
Order Tax
₹ {{ request('totaltax') }}
Discount
₹ {{ request('totalDisc') }}
Shipping
TCS %
Grand Total
₹ {{$decodes['grandnetAmt']}}
Description
{{ request('remarks') }}
@endsection