@extends('frontend.organization.organization_layouts') @section('member-content')
| # | Invoice No | Amount | Billing Period | Invoice Date | Due Date | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $invoice->invoice_no }} | {{ number_format($invoice->amount, 2) }} | {{ ucfirst($invoice->bill_period) }} | {{ $invoice->invoice_date?->format('d M, Y') }} | {{ $invoice->last_due_date?->format('d M, Y') }} | {{ ucfirst($invoice->payment_status) }} | Invoice @if ($invoice->payment_status === 'unpaid' && $invoice->is_payment_submit==false) Pay @endif |
| No invoices found. | |||||||