@extends('layouts.app') @section('title', 'Bank Account Details') @section('content')
{{ $account->getMaskedMobileNumber() }}
{{ $account->getMaskedAccountNumber() }}
{{ $account->getMaskedRoutingNumber() ?? '-' }}
{{ $account->getMaskedIban() ?? '-' }}
| Date | Amount | Status | Action |
|---|---|---|---|
| {{ $withdrawal->created_at->format('M d, Y H:i') }} | ${{ number_format($withdrawal->amount_cents / 100, 2) }} | @if($withdrawal->status == 'completed') Completed @elseif($withdrawal->status == 'pending_admin_approval') Pending @elseif($withdrawal->status == 'rejected') Rejected @else {{ $withdrawal->status }} @endif | View |
No withdrawal history yet.
@endifName:
{{ $account->client->name }}
Email:
{{ $account->client->email }}
Phone:
{{ $account->client->phone ?? '-' }}
Active Status:
@if($account->is_active)
Active
@else
Inactive
Reason: {{ $account->deactivation_reason }}
Deactivated: {{ $account->deactivated_at?->format('M d, Y H:i') }}
By: {{ $account->deactivatedBy->name ?? '-' }}
@endif
Verification:
@if($account->is_verified)
Verified
Verified: {{ $account->verified_at?->format('M d, Y H:i') }}
By: {{ $account->verifiedBy->name ?? '-' }}
@else
Unverified
@endif
Default Account:
@if($account->is_default)
Yes
@else
No
@endif
Usage Statistics:
Used {{ $account->usage_count }} times
@if($account->last_used_at)
Last used: {{ $account->last_used_at->diffForHumans() }}
@else
Never used
@endif
Created:
{{ $account->created_at->format('M d, Y H:i') }}