@extends('admin.layouts.app') @section('title', 'Attendance Report') @section('content')

Attendance Report

@csrf
@if ($searched)
X
@endif
@if ($searched)
@foreach ($dates as $d) @endforeach @foreach ($rows as $row) @foreach ($dates as $dt) @php $mark = $row['cells'][$dt] ?? 'A'; @endphp @if ($mark === 'P') @elseif ($mark === 'W') @else @endif @endforeach @endforeach
Emp ID Employee Name{{ date('d/m', strtotime($d)) }}Total Days Present Week Off Absent
{{ $row['emp_id'] }} {{ $row['name'] }}PWA{{ $row['total'] }} {{ $row['present'] }} {{ $row['week_off'] }} {{ $row['absent'] }}
@endif
@endsection @push('scripts') @endpush