@extends('layouts.app') @section('title', 'Edit Invoice - Quick OMS') @section('content') @push('css') @endpush

Edit Invoice #{{ $invoice->invoice_number }}

@csrf
@error('issue_date') {{ $message }} @enderror
@error('expiry_date') {{ $message }} @enderror
@error('subject') {{ $message }} @enderror

Company & Billing Details

@error('company_id') {{ $message }} @enderror
@error('user_id') {{ $message }} @enderror

Line Items

@foreach($invoice->items as $index => $item) @endforeach
Product/Service Quantity Unit Price Discount ($) Total
$
${{ number_format($item->total, 2) }}
Subtotal: $0.00
Tax (GST): $0.00
Grand Total: $0.00
@push('scripts') @endpush @endsection