@extends('layouts.admin-club') @section('club-admin-content')
Track income, expenses, and transactions
Total Income
Total Expenses
Net Profit
Pending Payments
| Date | Description | Type | Amount | Status | Actions |
|---|---|---|---|---|---|
| {{ $transaction->transaction_date ? $transaction->transaction_date->format('M d, Y') : 'N/A' }} | {{ $transaction->description ?? 'N/A' }} | @if($transaction->type === 'income') Income @elseif($transaction->type === 'expense') Expense @else {{ ucfirst($transaction->type) }} @endif | {{ $transaction->type === 'income' ? '+' : '-' }}{{ $club->currency ?? 'BHD' }} {{ number_format($transaction->amount, 2) }} | @if($transaction->status === 'paid') Paid @elseif($transaction->status === 'pending') Pending @else {{ ucfirst($transaction->status) }} @endif |
Transactions will appear here as they occur