@extends('layouts.app') @section('title', 'Client Bank Accounts') @section('content')
| Client | Type | Account Info | Nickname | Status | Verification | Usage | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $account->client->fname }} {{ $account->client->email }} |
@if($account->isMobileWallet()) Mobile Wallet @else Bank @endif |
@if($account->isMobileWallet())
{{ $account->mobile_wallet_provider }} {{ $account->getMaskedMobileNumber() }} {{ $account->mobile_wallet_account_name }} @else {{ $account->bank_name }} {{ $account->getMaskedAccountNumber() }} {{ $account->bank_account_name }} @endif |
{{ $account->account_nickname ?? '-' }} |
@if($account->is_active)
Active
@if($account->is_default)
Default
@endif
@else
Inactive {{ $account->deactivation_reason }} @endif |
@if($account->is_verified)
Verified
{{ $account->verified_at?->format('M d, Y') }} @else Unverified @endif |
{{ $account->usage_count }} times @if($account->last_used_at) Last: {{ $account->last_used_at->diffForHumans() }} @endif |
|
| No bank accounts found | |||||||