Manage Daily Timesheet
EmpId | EmployeeName | CheckinTime | CheckoutTime | ShiftHours | Workinghours | Breaktimehours | ActualworkingHours | Status | Date | Action |
---|---|---|---|---|---|---|---|---|---|---|
{{ $d && $d->getuser ? $d->getuser->employe_id : '' }} | {{ $d && $d->getuser ? $d->getuser->name : '' }} | {{ $d ? $d->checkin_time : '' }} | {{ $d ? $d->checkout_time : '' }} | {{ $d ? $d->shithours : '' }} | {{ $d ? $d->workinghours : '' }} | {{$d->breaktime_hours ?: 'N/A' }} | @if ($d && $d->breaktime_hours == null) {{ $d ? $d->workinghours : '' }} @else {{ $d ? $d->actualworking_hours : '' }} @endif | {{$d->status ?:'N/A' }} | {{$d->date?date('d-F-Y',strtotime($d->date)):'N/A'}} |