@extends('admin.master') @section('content') @section('title','Employee Working Hour')
| S/L | Fingerprint No. | Employee Name | In Time | Out Time | Total Working Hour | Approve Hour | Approve Minutes | Status |
|---|---|---|---|---|---|---|---|---|
| 1 | {{$value['finger_id']}} | {{$value['fullName']}} |
|
|
|
@php
if($value['approve_working_hour'] !='' && $value['approve_working_hour'] !='00:00'){
$totalWorkingHour = date('H:i', strtotime($value['approve_working_hour']));
$readonly = "readonly";
}else{
$totalWorkingHour = date('H:i', strtotime($value['workingHour']));
$readonly = "";
}
$explodeValue = explode(":",$totalWorkingHour);
$hour = $explodeValue[0];
$minutes = $explodeValue[1];
@endphp
|
|
@if($value['approve_working_hour'] !='' && $value['approve_working_hour'] !='00:00') Approved @else pending @endif |
| No data available | ||||||||