@extends('layouts.master') @section('title','Dashboard') @section('page-header') Dashboard @stop @section('css') @stop @section('content')
{{ $total_employee_count }}
Total Employee
{{ $today_attendance }}
Present Today
{{ $total_employee_count - $today_attendance }}
Today Absent
{{ $leave }}
Today Leave
{{ $short_leave }}
Short Leave
{{ $out_work }}
Out Of Work

Login Status

    @foreach($logged_in_users as $key => $logged_in_user)
  • {{ $logged_in_user->user->name }} {!! $logged_in_user->user->isLoggedIn() !!} {{ fdate($logged_in_user->created_at, 'Y-m-d H:i a') }}
  • @endforeach

New Employee

@foreach($new_employees as $key => $employee) @endforeach
Name Id Department
{{ $employee->name }} {{ $employee->employee_full_id }} {{ $employee->department->name }}

Department Wise Employee

    @foreach ($departments as $department)
  • {{ $department->name }} {{ $department->employees_count }}
  • @endforeach

Top Sheet

    @forelse($top_sheets as $key => $top_sheet)
  • {{ optional($top_sheet->department)->name }} {{ $top_sheet->netTotalGross->sum('net_total_gross') - $top_sheet->netTotalDeduction->sum('net_total_ded') }}
  • @empty
  • No records found!
  • @endforelse

Dept. Wise Atnd

    @foreach($department_wise_attndances as $key => $department)
  • {{ $department->name }} {{ $department->employees_count }}
  • @endforeach

Shift Wise Atnd

  • Not Assign Shift {{ $not_assign_shift }}
  • @foreach($shift_wise_attendances as $key => $shift)
  • {{ $shift->in_start }} - {{ $shift->out_end }} {{ $shift->employees_count }}
  • @endforeach
{{--

Department Wise Attendance

8:30 am, 20 February 2021

Upcoming Holidays

5 Employees in this month
--}}

Employee Attendance

@if($settings->where('key', 'employee_attendance_chart')->where('value', '1')->count() > 0)

Employee Attendance Chart for - ({{ date('F, Y') }})

@endif

Department Wise Emloyee Distribution

Calendar



@endsection @section('js') @stop