@extends('layouts.app') @section('title', 'Detail Absensi - PressGO') @section('content')
Detail Absensi

{{ \Carbon\Carbon::parse($attendance->date)->translatedFormat('l, d F Y') }}

{{ $attendance->check_in }}

@if($attendance->status == 'present') Tepat Waktu @else Terlambat @endif

@if($attendance->check_out) {{ $attendance->check_out }} @else Belum Check Out @endif

@if($attendance->check_in && $attendance->check_out) @php $checkIn = \Carbon\Carbon::createFromFormat('H:i:s', $attendance->check_in); $checkOut = \Carbon\Carbon::createFromFormat('H:i:s', $attendance->check_out); $duration = $checkIn->diff($checkOut); @endphp {{ $duration->h }} jam {{ $duration->i }} menit @else - @endif

{{ $attendance->notes ?? '-' }}

Informasi Peserta
{{ $attendance->participant->nama_lengkap }}

{{ $attendance->participant->nama_lengkap }}

{{ $attendance->participant->nim }}

{{ $attendance->participant->program_type }}

{{ $attendance->participant->institusi }}

@endsection