@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
{{ $short_leave }}
Short Leave
{{ $out_work }}
Out Of Work
@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
| Name |
Id |
Department |
@foreach($new_employees as $key => $employee)
| {{ $employee->name }} |
{{ $employee->employee_full_id }} |
{{ $employee->department->name }} |
@endforeach
@foreach ($departments as $department)
- {{ $department->name }} {{ $department->employees_count }}
@endforeach
@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
@foreach($department_wise_attndances as $key => $department)
- {{ $department->name }} {{ $department->employees_count }}
@endforeach
- Not Assign Shift {{ $not_assign_shift }}
@foreach($shift_wise_attendances as $key => $shift)
- {{ $shift->in_start }} - {{ $shift->out_end }} {{ $shift->employees_count }}
@endforeach
{{--
8:30 am, 20 February 2021
5 Employees in this month
--}}
Employee Attendance
@if($settings->where('key', 'employee_attendance_chart')->where('value', '1')->count() > 0)
@endif
@endsection
@section('js')
@stop