@extends('layouts.master') @section('title', 'Admin Dashboard') @section('css') @endsection @section('breadcrumb')

Admin dashboard

@endsection @section('main_content')
@php use Carbon\Carbon; $hour = Carbon::now()->hour; $greeting = 'Good day'; $emoji = '👋'; if ($hour >= 5 && $hour < 12) { $greeting = 'Good morning'; $emoji = '🌞'; } elseif ($hour >= 12 && $hour < 17) { $greeting = 'Good afternoon'; $emoji = '☀️'; } elseif ($hour >= 17 && $hour < 21) { $greeting = 'Good evening'; $emoji = '🌇'; } else { $greeting = 'Good night'; $emoji = '🌙'; } @endphp

{{ $emoji }} {{ $greeting }},
{{ Auth::user()->first_name }} {{ Auth::user()->last_name }}

Welcome to the Insurance CRM System — your trusted workspace for managing clients, policies, and claims.

Customer Growth (Monthly)

0

+0%

Claims by Status (Monthly)

Total Customers

icon

0

As of {{ now()->format('F Y') }}

icon

0

Current active count

Premium Collected

icon

Birr 0

Since Jan 2025

Unpaid Invoices

icon

0

Pending collections

Sales Statistic (Yearly)

Total Premium
Birr 0
0%
New Leads
0
0%
Policies Sold
0
0%

Upcoming Appointments

Customers by Map

The map shows customer distribution by Ethiopian Region.
@endsection @section('scripts') @endsection