@extends('layouts.user') @section('title', 'User Dashboard') @section('page-title', 'Dashboard') @section('content')
Current Balance
৳{{ number_format(auth()->user()->balance, 2) }}
SMS Sent
{{ $stats['total_sms_sent'] }}
SMS Rate
৳{{ $smsRate }}/SMS
KYC Status
@if(auth()->user()->kyc_verified) Verified @else Pending @endif
Quick Actions
Send SMS
Top Up Balance
@if(!auth()->user()->kyc_verified)
Complete KYC
@endif
Support Ticket
@if(!auth()->user()->kyc_verified)
KYC Verification Required

Complete KYC verification to unlock full features and get 10 free SMS for testing.

Verify KYC Now
@endif
Recent SMS
@foreach($recentSMS as $sms) @endforeach
Sender ID Recipients Cost Status Time
{{ $sms->sender_id }} {{ $sms->message_count }} ৳{{ number_format($sms->cost, 2) }} {{ ucfirst($sms->status) }} {{ $sms->created_at->format('M j, H:i') }}
@if($recentSMS->isEmpty())

No SMS sent yet

Send Your First SMS
@endif
Recent Transactions
@foreach($recentTransactions as $transaction) @endforeach
Type Amount Description Date
{{ ucfirst($transaction->type) }} {{ $transaction->type === 'topup' ? '+' : '-' }}৳{{ number_format($transaction->amount, 2) }} {{ $transaction->description }} {{ $transaction->created_at->format('M j, H:i') }}
@if($recentTransactions->isEmpty())

No transactions yet

@endif
Account Information
Account Status Active
SMS Rate ৳{{ $smsRate }}/SMS
Available Sender IDs {{ $stats['sender_ids_count'] }}
Reseller @if(auth()->user()->reseller) {{ auth()->user()->reseller->company_name }} @else Direct @endif
Need Help?

Having issues or questions? Our support team is here to help you.

@endsection