@extends('parts.container') @section('styles') @endsection @section('content')

User statement

Statement for {{ $user->first_name }} {{ $user->last_name }}

User details
Name {{ $user->first_name }} {{ $user->last_name }}
Email {{ $user->email }}
Phone @if ($user->userDetails?->customer_phone) {{ $user->userDetails?->customer_dial_code }}{{ $user->userDetails?->customer_phone }} @else — @endif
Country {{ $user->userDetails?->customer_country ?? '—' }}
ID {{ $user->userDetails?->id_type ?? '—' }} {{ $user->userDetails?->id_number ?? '' }}
Date registered {{ $user->created_at?->format('Y-m-d H:i') ?? '—' }}
Wallet details
@forelse ($wallets as $wallet) @empty @endforelse
Alias Currency Wallet No Available Actual
{{ $wallet->alias ?? '—' }} {{ $wallet->currency_code ?? '—' }} {{ $wallet->wallet_no ?? '—' }} {{ number_format((float) ($wallet->available_balance ?? 0), 2) }} {{ number_format((float) ($wallet->actual_balance ?? 0), 2) }}
No wallets available.
# Operator Type Status Currency Amount Wallet Date View more
@endsection @section('scripts') @endsection