@extends('layouts.master') @section('styles') @endsection @section('content')

Report Management

Export Excel

Employee Attendance Report

@if (collect($data)->count()>0) @foreach (collect($data) as $item) @endforeach @endif
Date Employee ID Employee Name Reporting To Distribution Region Start Shift End Shift Total Shift Hours
{{$item->Date}} {{$item->Employee_ID}} {{$item->Employee_Name}} {{$item->Reporting_To}} {{$item->Distribution}} {{$item->Region}} {{$item->Shift_Start}} {{(isset($item->Shift_End))? $item->Shift_End: 'NA'}} {{$item->Shift_Time}}
@endsection @section('scripts') @endsection