@extends('components.app-layout') @section('title', 'Member Payments') @section('subtitle', 'Manage tithe, offerings and other member payments') @section('content')
Record and manage member contributions
Total Payments
{{ $stats['total_payments'] }}
This Month
{{ $stats['payments_this_month'] }}
Total Amount
₵{{ number_format($stats['total_amount'], 2) }}
Amount This Month
₵{{ number_format($stats['amount_this_month'], 2) }}
| Member | Payment | Amount | Method | Date | Status | Actions |
|---|---|---|---|---|---|---|
|
@if($payment->member)
{{ substr($payment->member->first_name ?? 'U', 0, 1) }}{{ substr($payment->member->last_name ?? 'N', 0, 1) }}
{{ $payment->member->first_name }} {{ $payment->member->last_name }}
{{ $payment->payment_reference }}
Member Deleted
{{ $payment->payment_reference }}
|
{{ $payment->payment_type_display }}
@if($payment->description)
{{ Str::limit($payment->description, 30) }}
@endif
|
₵{{ number_format($payment->amount, 2) }}
|
{{ ucwords(str_replace('_', ' ', $payment->payment_method)) }} | {{ $payment->payment_date->format('M d, Y') }} | {!! $payment->status_badge !!} | |
|
No payments found Start by recording your first payment |
||||||