@extends('layouts.app') @section('content')
| Student Name | Class/Package | Amount | Status | Actions |
|---|---|---|---|---|
| {{ $invoice->student->full_name }} | {{ $invoice->tenant->club_name }} | ${{ number_format($invoice->amount, 2) }} | @if($invoice->status === 'paid') Paid @elseif($invoice->status === 'pending') Pending @else Overdue @endif | View @if($invoice->status !== 'paid') Pay @endif |
|
No payments due at this time. |
||||