Payments

Manage TAFTA subscriptions, licenses, tools, and recurring payment obligations.

@if(session('success'))
{{ session('success') }}
@endif

All Payments

View, edit, and manage all recorded payments.

Total Records: {{ $payments->total() }}
@forelse($payments as $payment) @empty @endforelse
Title Category Amount Frequency Due Date Status Actions
{{ $payment->title }}
{{ $payment->category ?: '—' }} ₦{{ number_format($payment->amount, 2) }} {{ str_replace('_', ' ', $payment->frequency) }} {{ $payment->due_date->format('M d, Y') }} @if($payment->status === 'paid') Paid @elseif($payment->status === 'overdue') Overdue @else Pending @endif
View Edit
@csrf @method('DELETE')
No payments added yet.
{{ $payments->links() }}