Bank Account Verifications

Review and verify golfer bank accounts for withdrawals

Pending Verification

{{ $counts['pending'] }}

Verified

{{ $counts['verified'] }}

Rejected

{{ $counts['rejected'] }}

Total Bank Accounts

{{ $counts['total'] }}

Clear
@if($profiles->count() > 0)
@foreach($profiles as $profile)
@if($profile->user->getFirstMediaUrl('avatar')) {{ $profile->user->name }} @else
{{ substr($profile->user->name, 0, 1) }}
@endif

{{ $profile->user->name }}

{{ $profile->user->email }}

{{ $profile->bank_account_status }}
Bank: {{ $profile->bank_name }}
Account Holder: {{ $profile->account_holder_name }}
Account: {{ $profile->account_number }}
Routing: {{ $profile->routing_number }}
Account Type: {{ $profile->account_type ?? 'N/A' }}
Submitted: {{ $profile->updated_at->diffForHumans() }}
@if($profile->bank_verified && $profile->bank_verified_at)
Verified: {{ $profile->bank_verified_at->format('M d, Y') }}
@endif @if($profile->bank_verification_status === 'rejected' && $profile->bank_rejected_at)
Rejected: {{ $profile->bank_rejected_at->format('M d, Y') }}
@endif
@if($profile->bank_verification_status === 'rejected' && $profile->bank_rejection_reason)

Rejection Reason: {{ $profile->bank_rejection_reason }}

Golfer must update their bank details before admin can re-verify.

@endif
@if($profile->bank_verified) @elseif($profile->bank_verification_status === 'rejected') Awaiting Update @else
@csrf
@endif Details
@endforeach
{{ $profiles->links() }}
@else

No bank accounts found

No bank accounts match your current filters.

@endif
@push('scripts') @endpush