@if(session('success')) @endif @if(session('error')) @endif

Welcome, {{ $clientInfo->full_name }}!

Here's an overview of your account and recent activity.

৳{{ number_format($billStats['pending_amount'], 2) }}
Total Due
@if($billStats['pending_amount'] > 0) Pay Now @else Recharge @endif
{{ $billStats['total_bills'] }}
Total Bills
{{ $billStats['pending_bills'] }}
Pending Bills
{{ $billStats['paid_bills'] }}
Paid Bills
{{ $billStats['overdue_bills'] }}
Overdue Bills
Recent Bills
@if($recentBills->count() > 0) @foreach($recentBills as $bill)
{{ $bill->bill_number }}
{{ $bill->month_year }}
৳{{ number_format($bill->total_amount, 2) }}
{{ ucfirst($bill->status) }}
{{ $bill->created_at->format('M d, Y') }}
@endforeach @else
No bills found

You don't have any bills yet.

@endif
@if($clientInfo->profile_picture) Profile @else @endif
{{ $clientInfo->full_name }}
Login ID
{{ $clientInfo->client_login_id ?? 'N/A' }}
Mobile
{{ $clientInfo->mobile_number }}
Email
{{ $clientInfo->email_address ?? 'N/A' }}
@if($clientInfo->username_ip)
Username/IP
{{ $clientInfo->username_ip }}
@endif @if($clientInfo->password)
Password
{{ $clientInfo->password }}
@endif @if($clientInfo->joining_date)
Joining Date
{{ $clientInfo->joining_date->format('M d, Y') }}
@endif @if($clientInfo->branch)
Branch
{{ $clientInfo->branch->name }}
@endif