@extends('layout.app')
@section('title', __('attendance'))
@section('content')
@foreach ($attendances as $attendance)
{{ __('sl') }}
{{ __('created_by') }}
{{ __('date') }}
{{ __('employee') }}
{{ __('checkin') }}
{{ __('checkout') }}
{{ __('action') }}
@endforeach
{{ $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') }}