@extends('admin.layout.master') @section('home')

Employee Group Wise Attendance Report

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@include('payroll.includes.printAndExcel')

Attendance For the Month Of @if(!empty($start_date)){{date('d-m-Y',strtotime($start_date))}} to {{date('d-m-Y',strtotime($end_date))}}@endif

@if(!empty($group_attendance)) @foreach($emp_info as $key=>$val) @endforeach @endif @if(!empty($group_attendance)) @foreach($emp_info as $key=>$val) @endforeach @endif @if(!empty($group_attendance)) @foreach($group_attendance as $key=>$val) @foreach($val as $attdn_key=>$attdn_val) @endforeach @endforeach @endif
Date{{$val[0]->get_emp_info->emp_name}} ({{$key}})
In Out
{{date('Y-m-d',$key)}}@if(!empty($attdn_val['in_time'])){{$attdn_val['in_time']}}@else{{'-'}}@endif @if(!empty($attdn_val['out_time'])){{$attdn_val['out_time']}}@else{{'-'}}@endif

@endsection