@extends('layouts.home') @section('content')
{{ $attendance->description }}
| # | Tanggal | Jam Masuk | Jam Pulang | Status | ||||
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{-- not presence / tidak hadir --}} @php $histo = $history->where('presence_date', $date)->first(); @endphp @if (!$histo){{ $date }} |
@if($date == now()->toDateString())
Belum Hadir
@else
Tidak Hadir
@endif
|
@else
{{ $histo->presence_date }} | {{ $histo->presence_enter_time }} | @if($histo->presence_out_time) {{ $histo->presence_out_time }} @else Belum Absensi Pulang @endif |
@if ($histo->is_permission)
Izin
@else
Hadir
@endif
|
@endif
||