@extends('layout.app') @section('title', __('attendance')) @section('content')
@foreach ($attendances as $attendance) @endforeach
{{ __('sl') }} {{ __('created_by') }} {{ __('date') }} {{ __('employee') }} {{ __('checkin') }} {{ __('checkout') }} {{ __('action') }}
{{ $loop->iteration }} {{ $attendance->user->name }} {{ dateFormat($attendance->date) }} {{ $attendance->employee->user->name }} {{ Carbon\Carbon::parse($attendance->checkin)->format('h:i A') }} {{ Carbon\Carbon::parse($attendance->checkout)->format('h:i A') }}
@endsection