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

Employees

Farmers

Products

Pesticides

Tickets

@php $hour = date('H'); $greeting = ''; if ($hour >= 4 && $hour < 12) { $greeting = 'morning'; } elseif ($hour >= 12 && $hour < 17) { $greeting = 'afternoon'; } elseif ($hour >= 17 && $hour < 21) { $greeting = 'evening'; } else { $greeting = 'night'; } @endphp
Hello {{ auth()->user()->employeeMaster?->short_name }}

Good {{ $greeting }}

Check In Time:

--:--:--

Check Out Time:

--:--:--

On Absent Today Total: {{ count($onAbsentEmployees) }}
@if (count($onAbsentEmployees) > 0) @foreach ($onAbsentEmployees as $onAbsentEmployee) @endforeach @else @endif
Employee Mobile
{{ $onAbsentEmployee->employee_name }} {{ $onAbsentEmployee->phone_number }}
No Records Found

Orders

Pick Up

On Present Today Total: {{ count($onPresentEmployees) }}
@if (count($onPresentEmployees) > 0) @foreach ($onPresentEmployees as $onPresentEmployee) @endforeach @else @endif
Employee Mobile
{{ $onPresentEmployee->employee_name }} {{ $onPresentEmployee->phone_number }}
No Records Found

🎫 Tickets

ID Category Description Created By Created Date Status Actions
@endsection @section('page-js') @endsection