@extends('layouts.app') @section('content')
{{ csrf_field() }}
Home
Sales Invoice List
New Sales Invoice
?
New Sales Invoice
New sales invoices.
Customer *
Add New Customer
@foreach($data['customers'] as $key => $value) @if($value != '')
{{$value}}
@endif @endforeach
Invoice Date*
Due Date*
Reference / PO Number
Main Address
Delivery Address
Description*
Ledger Account*
Qty*
Price/Rate*
Discount
VAT Rate
VAT Amount
Total
@foreach($data['products'] as $key => $value)
{{$value}}
@endforeach
Sale
Amount:
%
No VAT
VAT
{{ number_format(0,$data["decimal_point"]) }}
{{ number_format(0,$data["decimal_point"]) }}
Comments
Terms and Condition
Subtotal
0.00
Discount
0.00
Amount:
%
Total Tax
0.00
Total
0.00
Save
Cancel
Save
Save & Add New
Save & Payment
×
Upload Photo
@endsection @section('admin_css')
@stop @section('admin_js') @include('admin.js.sale-create') @stop