Invoice #{{ $addedInvoice->invoice_id ?? '' }}
Invoice Date: {{ $addedInvoice->invoice_date ? \Carbon\Carbon::parse($addedInvoice->invoice_date)->format('d-m-Y') : '' }}

Invoice From:

{{ $settings->company_name ?? '' }}

{{ $settings->address ?? '' }}

{{ $settings->email ?? '' }}

(+91) {{ $settings->phone ?? '' }}

Invoice To:

{{ $addedInvoice->client->user->name ?? '' }}

(+91) {{ $addedInvoice->client->user->phone ?? '' }}

@foreach ($addedInvoice->invoiceItems as $index => $data) @endforeach
No. Item Description Price Quantity Amount
{{ $index + 1 }} {{ $data->product_name ?? '' }} {{ $data->price ?? '' }} {{ $data->quantity ?? '' }} {{ $data->total ?? '' }}
SubTotal {{ $addedInvoice->amount ?? '0' }}
Tax {{ ($addedInvoice->final_amount - $addedInvoice->amount + $addedInvoice->discount) ?? '0' }}
Discount {{ $addedInvoice->discount ?? '0' }}
Grand Total {{ $addedInvoice->final_amount ?? '0' }}
@if ($settings->whatsapp_config == 'A') Send Invoice @endif Back