@extends('layouts.admin') @section('title', 'Dashboard') @section('breadcrumb_title', 'Dashboard') @section('breadcrumb_sub_title', 'Overview') @section('page_title', 'Dashboard') @section('content')

Total Charging Points

{{ $stats['active_charging_points'] ?? 0 }}

New Update Requests

{{ $stats['total_update_requests'] ?? 0 }}

Active Clients

{{ $stats['active_clients'] ?? 0 }}

bug Requests

{{ $stats['bug_requests'] ?? 0 }}

Charging Points Overview
Verified: {{ $stats['active_charging_points'] ?? 0 }} Under Review: {{ $stats['under_review_points'] ?? 0 }} Merged: {{ $stats['merged_charging_points'] ?? 0 }} Rejected: {{ $stats['rejected_charging_points'] ?? 0 }} Inactive: {{ $stats['inactive_charging_points'] ?? 0 }}
Status Count Percentage Progress
Verified

{{ $stats['active_charging_points'] ?? 0 }}

{{ $stats['active_percentage'] ?? 0 }}%
{{ $stats['active_percentage'] ?? 0 }}%
Under Review

{{ $stats['under_review_points'] ?? 0 }}

{{ $stats['review_percentage'] ?? 0 }}%
{{ $stats['review_percentage'] ?? 0 }}%
Merged

{{ $stats['merged_charging_points'] ?? 0 }}

{{ $stats['merged_percentage'] ?? 0 }}%
{{ $stats['merged_percentage'] ?? 0 }}%
Rejected

{{ $stats['rejected_charging_points'] ?? 0 }}

{{ $stats['rejected_percentage'] ?? 0 }}%
{{ $stats['rejected_percentage'] ?? 0 }}%
Inactive

{{ $stats['inactive_charging_points'] ?? 0 }}

{{ $stats['inactive_percentage'] ?? 0 }}%
{{ $stats['inactive_percentage'] ?? 0 }}%
Recent Activity
@forelse($recentActivities ?? [] as $activity)
{{ $activity['title'] ?? 'New Activity' }}

{{ $activity['description'] ?? 'No description available' }}

{{ $activity['time'] ?? 'Just now' }}

@empty
No recent activity

Check back later for updates

@endforelse
@endsection @section('scripts') @endsection