@extends('layouts.app') @section('title', 'Admin Dashboard - MiMSMS Voter System') @section('content')

Admin Dashboard

Total Districts

{{ $total_districts }}

Total Thanas

{{ $total_thanas }}

Electoral Areas

{{ $total_areas }}

Total Orders

{{ $total_orders }}

Pending Orders

{{ $pending_orders }}

📤 Import Voter Data 📋 Manage Orders 📊 Import Logs

Recent Orders

@if($recent_orders->count() > 0) @foreach($recent_orders as $order) @endforeach
Order ID Customer Area Status WHMCS ID Date Action
#{{ $order->id }} {{ $order->customer_name }} {{ $order->electoralArea->name ?? 'N/A' }} {{ ucfirst($order->order_status) }} {{ $order->whmcs_order_id ?? '-' }} {{ $order->created_at->format('M d, Y') }} Edit
@else

No orders yet

@endif
@endsection