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

{{__('obs.date')}} {{__('obs.wise')}} {{__('obs.group')}} {{__('obs.attendance')}} {{__('obs.report')}}

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

{{__('obs.attendance')}} {{__('obs.for')}} {{__('obs.the')}} {{__('obs.month')}} {{__('obs.of')}} @if(!empty($start_date)){{date('d-m-Y',strtotime($start_date))}} {{__('obs.to')}} {{date('d-m-Y',strtotime($end_date))}}@endif

@for($i=strtotime($start_date); $i<=strtotime($end_date);$i += 86400) @endfor @for($i=strtotime($start_date); $i<=strtotime($end_date);$i += 86400) @endfor @if(!empty($group_attendance)) @foreach($group_attendance as $key=>$val) @foreach($val as $attdn_val) @endforeach @endforeach @endif
{{__('obs.date')}}{{date('d-M',$i)}}
{{__('obs.in')}} {{__('obs.out')}}
{{$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