{{-- Header Card --}}
Agent Dashboard
Add Customer
{{-- Stat Cards --}}
Today's Activity

{{ $todaysCustomers + $todaysServiceRequests }}

Total Customers

{{ $totalCustomer }}

Service Requests

{{ $totalServiceRequests }}

Total Commission
Customers: {{ $totalCustomer * 5 }} ETB Services: {{ $totalServiceRequests * 10 }} ETB

{{ ($totalCustomer * 5) + ($totalServiceRequests * 10) }} ETB

{{-- Chart --}}
Application Status Overview
{{-- Recent Applications Table --}}
Recent Applications
Add Service Request
@forelse($recentApplications as $index => $app) @empty @endforelse
# Customer Service ID Service Name Status Commission Submitted On
{{ $index + 1 }} {{ $app->customer_service_id }} {{ $app->service?->getLocalized('name') }} {{ ucfirst($app->status) }} 10 ETB {{ $app->created_at->format('Y-m-d') }}
No applications found.