@extends('hr_main') @section('title', '| Attendance Report') @section('content')
Name : {{$attendenceReportEmp->emp_name_english??'Not Found'}}
ID : {{$attendenceReportEmp->emp_id??'Not Found'}}
Designation : {{$attendenceReportEmp->name??'Not Found'}}
Start Date: {{date('d-M-y',strtotime($data['startDate']))}} to End
Date: {{date('d-M-y',strtotime($data['endDate']))}}
| SL | Emp. No | Emp. Name | Date | In Time | Out Time | Status |
|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{$attendenceReports->emp_id}} | {{$attendenceReports->emp_name_english}} | {{date('d-M-y',strtotime($attendenceReports->date))}} | {{date('h:i A',strtotime($attendenceReports->first_in))}} | @if($attendenceReports->last_out !== "00:00:00") {{date('h:i A',strtotime($attendenceReports->last_out))}} @else -- @endif | Present |