@extends('layouts.app') @section('content')

Attendance

Back

Attendance

Name {{ $attendance->user->name }}
Status {{ $attendance->status ? 'Check Out' : 'Check In' }}
Check In {{ $attendance->created_at }}
Check Out {{ $attendance->updated_at }}
@foreach ($attendance->detail as $detail)

Attendance {{ $detail->type }}

Time {{ $detail->created_at }}
Long, lat {{ $detail->long }}, {{ $detail->lat }}
Address {{ $detail->address }}
Location
Photo
@endforeach
@endsection