@extends('index') @section('map_header') @endsection @section('main-content')
{{ Auth::user()->full_name }}
Logout
{{-- App bar --}}
Data Absen
@csrf
@foreach ($history as $h) @if (isset($h->lat_m)) @endif @if (isset($h->lat_p)) @endif @endforeach
Foto dan Lokasi Tanggal Waktu Nama Guru Keterangan
@if ($h->p_masuk != '') @else @if ($h->kerja != 'kerja')
Tidak absen Masuk
@else
{{ $h->kerja }}
@endif @endif @if ($h->p_pulang != '') @else @if ($h->kerja != 'libur')
Tidak absen Pulang
@else
{{ $h->kerja }}
@endif @endif @if (isset($h->lat_m))
@endif @if (isset($h->lat_p))
@endif
{{ $h->date }} {{ $h->masuk }} - {{ $h->pulang }} {{ Auth::user()->full_name }} @if ($h->kerja == 'libur') (Hari Libur) @else {{ $h->keterangan }} @endif
@foreach ($history as $h)
{{ $h->date }}
{{ $h->kerja == 'kerja' ? '' : 'Libur' }}
Masuk
@if ($h->masuk) {{ $h->masuk }} @else
{{ $h->kerja == 'libur' ? '-' : 'Belum absen' }}
@endif
kerja != 'kerja' ? 'bg-slate-100 text-slate-500' : 'text-slate-600' }}>Pulang
@if ($h->pulang) {{ $h->pulang }} @else
{{ $h->kerja == 'libur' ? '-' : 'Belum absen' }}
@endif
@endforeach @if (count($history) == 0)
Tidak ada data untuk ditampilkan
@endif
@endsection