@extends('admin.layout') @section('page-title', 'Hold Accounts') @section('content')

Hold Accounts

Total Balance

${{ number_format($totalBalance, 2) }}

@if(request()->hasAny(['search', 'is_active'])) Clear @endif
@forelse($holdAccounts as $holdAccount) @empty @endforelse
Payment Method Balance Description Status Actions
{{ $holdAccount->paymentMethod->name ?? 'N/A' }} ${{ number_format($holdAccount->balance, 2) }} {{ $holdAccount->description ?? 'N/A' }} {{ $holdAccount->is_active ? 'Active' : 'Inactive' }} Deposit Transactions View Edit
No hold accounts found
@if($holdAccounts->hasPages())
{{ $holdAccounts->links() }}
@endif
@endsection