@extends('admin.layouts.app') @section('title', 'Attendance Report') @section('content')
| Emp ID | Employee Name | @foreach ($dates as $d){{ date('d/m', strtotime($d)) }} | @endforeachTotal Days | Present | Week Off | Absent | ||
|---|---|---|---|---|---|---|---|---|
| {{ $row['emp_id'] }} | {{ $row['name'] }} | @foreach ($dates as $dt) @php $mark = $row['cells'][$dt] ?? 'A'; @endphp @if ($mark === 'P')P | @elseif ($mark === 'W')W | @elseA | @endif @endforeach{{ $row['total'] }} | {{ $row['present'] }} | {{ $row['week_off'] }} | {{ $row['absent'] }} |