@extends('layouts.app') @section('content')

Dashboard

Users

{{ number_format($totalUser) }}

Total Active ESIM

{{ number_format($totalActiveEsim) }}

Complete Order

{{ number_format($totalCompleteOrder) }}

Failed Order

{{ number_format($totalOrder - $totalCompleteOrder) }}

Total Esim

{{ number_format($totalEsim) }}

Pending Kyc

{{ $pendingKyc }}

Approved Kyc

{{ $approvedKyc }}

Rejected Kyc

{{ $rejectedKyc }}

Orders
Users
New Customers
@foreach($latestUsers as $user)
...
{{$user->name ?? $user->email}}
{{date('d M Y h:i A',strtotime($user->created_at))}}
@endforeach
Transaction History
@forelse($transactions as $tran) @empty @endforelse
Payment Date & Time Amount Status
{{$tran->payment_id}}
@if($tran->user) @endif
{{$tran->updated_at->format('d M Y, h:i a')}} {{$tran->currency->symbol}} {{$tran->amount}} @if($tran->payment_status == 'paid') Paid @else Created @endif
No transactions found

Top Destination

Esim Distribution by Region and Country

@endsection @push('scripts') @endpush