| Company Name: | {{ $company->name ?? ($billing_info->business_name ?? 'NA') }} |
| Contact Person: | {{ ($billing_info->first_name ?? '') . ' ' . ($billing_info->last_name ?? '') }} |
| Email: | {{ $billing_info->additional_email ?? 'N/A' }} |
| Address: |
{{ $billing_info->address_line_1 ?? '' }} |
| Invoice Date: | {{ $payment->created_at->format('F d, Y') }} |
| Payment Method: | {{ ucfirst($payment->payment_method ?? 'N/A') }} |
| Transaction ID: | {{ $payment->transaction_id }} |
| Subscription Period: | {{ $payment->period_start ? $payment->period_start->format('F d, Y') : 'N/A' }} - {{ $payment->period_end ? $payment->period_end->format('F d, Y') : 'N/A' }} |
| Description | Quantity | Unit Price | Amount |
|---|---|---|---|
|
{{ $plan->title ?? 'Subscription Plan' }} @if($plan) {{ $plan->active_jobs == 0 ? 'Unlimited' : $plan->active_jobs }} Active Jobs | | 1 {{ $plan->type == 1 ? 'Month' : 'Year' }} Duration @endif {{ $payment->subscribe_type == 1 ? 'Monthly' : ($payment->subscribe_type == 2 ? 'Yearly' : 'One-time') }} Subscription |
1 | {{ $payment->currency }} {{ number_format($payment->amount, 2) }} | {{ $payment->currency }} {{ number_format($payment->amount, 2) }} |
| Subtotal: | {{ $payment->currency }} {{ number_format($payment->amount, 2) }} |
| Transaction Fee: | {{ $payment->currency }} {{ number_format($payment->transaction_fee, 2) }} |
| Total: | {{ $payment->currency }} {{ number_format($payment->amount, 2) }} |