@extends('layouts.app') @section('content')
Manage your club membership payments, subscriptions, and billing history
| Invoice # | Student | Amount | Status | Due Date | Actions |
|---|---|---|---|---|---|
| {{ $invoice->id }} | {{ $invoice->student_user->full_name ?? 'N/A' }} | ${{ number_format($invoice->amount, 2) }} | {{ ucfirst($invoice->status) }} | {{ $invoice->due_date->format('M d, Y') }} | View @if($invoice->status === 'pending') Pay Now @else Receipt @endif |
You don't have any invoices yet.