@extends('layouts.invoicetab')
@section('invoice_content')
@foreach($invoices as $invoice) @endforeach
#ID Client Total (₹) Created Actions
{{ $invoice->custom_invoice_id }} {{ $invoice->contactModel->name }} {{ number_format($invoice->total, 2) }} {{ $invoice->created_at->format('d M Y') }}
@csrf @method('DELETE')
Download PDF
@foreach($invoices as $invoice) @endforeach
Add Quick Invoice
@csrf
ItemPrice
@endsection