{{ $title }}
| S.no | invoice Date | invoice Number | Number of students | Price | Payment Status | Action |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $invoice->created_at->format('d-m-Y') }} | {{ $invoice->invoice_number }} | {{ $invoice->students_count }} | {{ get_price($invoice->invoice_price) }} | @if ($invoice->payment_status === 'paid') Paid @else Pay with Paypal Pay with Stripe @endif | @if ($invoice->payment_status == 'paid') @else Unpaid @endif |