@extends('layouts.app') @section('title', 'New Invoice') @section('content') @php $routePrefix = strtolower(auth()->user()->role->name); @endphp

New Invoice

Create a new invoice for a customer.
← Back to Invoices
@if($errors->any())
@endif
@csrf
{{-- Left Column --}}
{{-- Header Info --}}
Invoice Details
@error('customer_id')
{{ $message }}
@enderror
@error('invoice_date')
{{ $message }}
@enderror
{{-- Line Items --}}
Line Items
{{-- rows appended by JS --}}
Product Qty Unit Price (₹) GST % Line Total
{{-- Notes & Terms --}}
Notes & Terms
{{-- Right Column (Summary) --}}
Summary
Subtotal ₹0.00
GST Total ₹0.00
Discount (₹)

Total ₹0.00
Company
{{ auth()->user()->company->name }}
Cancel
@endsection @push('script') @endpush