@extends('layouts.app') @section('title', 'Withdrawal Management') @section('content')
Manage all cooperative loan here
Pending WD
Pending Amount
Approved WD
Total WD
| Txn # | Name | Membership ID | Plan | Saving Balance | Request Amount | Request Date | Joined Date | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $sn++ }} | {{ $tx->user?->fullname }} | {{ $tx->user?->username }} | {{ strtoupper($tx->user?->cooperativeRegistration?->plan) }} | N{{ number_format($tx->savingWallet?->balance, 2) }} | N{{ number_format($tx->amount, 2) }} | {{ $tx?->created_at?->format('d M Y') }} | {{ $tx?->user?->created_at?->format('d M Y') }} | @php $status = match ($tx->status) { 'approved' => 'success', 'rejected' => 'danger', default => 'secondary', }; @endphp {{ $tx->status }} | @include('admin.cooperative.partials.withdrawalModal') |