@extends('employer.layouts.app') @section('content') @component('employer.layouts.partials.breadcrumbs', ['breadcrumbs' => $breadcrumbs]) @endcomponent
Sl # | Employee ID | Name | Date | Check-in-time | Check-out-time | Extra Hours | Approve/Reject | Action | |
---|---|---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | @isset($attendance->user->employee_id) {{ $attendance->user->employee_id}} @endisset | {{--@isset($attendance->user->first_name) {{ $attendance->user->first_name }}@endisset | --}}{{ optional($attendance->user)->first_name . ' ' . optional($attendance->user)->last_name ?? 'No data' }} | {{ $attendance->date }} | {{ date('h:i A', strtotime($attendance->check_in)) }} | {{ date('h:i A', strtotime($attendance->check_out)) }} | {{ $attendance->extra_hours }} | @if($attendance->approve_reject=='0') Reject @elseif($attendance->approve_reject=='1') Approved @else Pending @endif |
{{-- @if($leaveRequest->status != 0)
@else
@endif --}}
|