{{-- resources/views/invoicing/create.blade.php --}} @extends('layouts.app') @section('title', 'New Invoice') @section('page_title', 'New Invoice') @section('page_subtitle', 'Create a manual invoice') @section('content')
@csrf
{{-- Billing Details --}}
Billing Details
@error('type')
{{ $message }}
@enderror
@error('invoice_date')
{{ $message }}
@enderror
@error('due_date')
{{ $message }}
@enderror
{{-- Line Items --}}
Line Items
@error('items')
{{ $message }}
@enderror
Description
Qty
Unit Price
Tax Rate
@if(old('items')) @foreach(old('items') as $i => $item)
@endforeach @else
@endif
{{-- Running Total --}}
Subtotal 0.00
Tax 0.00
Total 0.00
{{-- Notes --}}
Cancel
@endsection @push('scripts') @endpush