@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Welcome, {{ Auth::user()->name }}

{{ date('D, d M') }}
@if($isAdmin)
Workforce
{{ $stats['total_employees'] }}
Total Registered
Today's Presence
{{ $stats['active_today'] }}
Employees Clocked-in
Total Payout
{{ $businessSettings->currency_symbol ?? '₹' }}{{ number_format($stats['salary_distributed'] / 1000, 1) }}k
Recent Payroll Cycle
Leave Status
{{ $stats['pending_leaves'] }}
Pending Approvals
@else
Attendance
{{ $stats['my_attendance_days'] }}
Days Present (Month)
Approvals
{{ $stats['my_pending_leaves'] }}
Requests Pending
Leave Bank
{{ $stats['my_total_leaves'] }}
Total Allotted Days
My Payout
{{ $businessSettings->currency_symbol ?? '₹' }}{{ number_format($stats['my_last_salary'] / 1000, 1) }}k
Recent Payslip Summary
@endif
Upcoming Holiday
@if($nextHoliday)
{{ \Carbon\Carbon::parse($nextHoliday->date)->format('d') }} {{ \Carbon\Carbon::parse($nextHoliday->date)->format('M') }}
{{ $nextHoliday->name }} {{ \Carbon\Carbon::parse($nextHoliday->date)->diffForHumans() }}
@else

No upcoming holidays.

@endif

HRMS Intelligence Engine

{{ date('Y') }} © All Rights Reserved

@endsection