@extends('layouts.app') @section('title', isset($invoice) && $invoice->exists ? 'Edit Invoice' : 'New Invoice') @section('page-title', isset($invoice) && $invoice->exists ? 'Edit Invoice' : 'New Invoice') @section('content')
@csrf @if(isset($invoice) && $invoice->exists) @method('PUT') @endif
{{-- LEFT: Main form --}}
{{-- Header info --}}
{{-- Customer --}}

Bill To

{{-- Customer search dropdown --}}
{{-- Supply type indicator --}}
Supply Type:
{{-- Line Items --}}

Items / Services

applicable
# Item / Description HSN/SAC Unit Qty Unit Price (₹) Disc % GST % Total (₹)
{{-- Notes --}}
{{-- RIGHT: Summary --}}

Invoice Summary

Subtotal
Discount
Taxable Amount
{{-- GST Breakup --}}
Total GST
Round Off
Total Amount
{{-- Amount in words --}}

{{-- Actions --}}
@push('scripts') @endpush @endsection