@extends('layouts/horizontalLayout')
@section('title', __('My Attendance'))
@section('content')
{{ __('Not checked in yet') }}
| {{ __('Date') }} | {{ __('Check In') }} | {{ __('Check Out') }} | {{ __('Total Hours') }} | {{ __('Status') }} |
|---|---|---|---|---|
| {{ $attendance->created_at->format('d M, Y') }} | {{ $attendance->check_in_time ? $attendance->check_in_time->format('h:i A') : '-' }} | {{ $attendance->check_out_time ? $attendance->check_out_time->format('h:i A') : '-' }} | @if($attendance->check_in_time && $attendance->check_out_time) {{ $attendance->check_in_time->diff($attendance->check_out_time)->format('%hh %im') }} @else - @endif | @if($attendance->check_out_time) {{ __('Completed') }} @else {{ __('In Progress') }} @endif |
|
{{ __('No attendance records found') }} |
||||