@extends('backend.layout.main') @section('content')
@csrf
* CSV file date format must match selected format.
* Do not change first line or column order.
* Max file size 2MB.
@foreach ($lims_attendance_all as $key => $attendance) @endforeach
{{ __('db.date') }} {{ __('db.Employee') }} {{ __('db.CheckIn') }} - {{ __('db.CheckOut') }} {{ __('db.status') }} {{ __('db.Created By') }} {{ __('db.action') }}
{{ $key }} {{ date($general_setting->date_format, strtotime($attendance['date'])) }} {{ $attendance['employee_name'] }} {!! $attendance['checkin_checkout'] !!} @if ($attendance['status']) {{ __('db.Present') }} @else {{ __('db.Late') }} @endif {{ $attendance['user_name'] }}
{{ Form::open(['route' => ['attendances.delete', [$attendance['date'], $attendance['employee_id']]], 'method' => 'post']) }} {{ Form::close() }}
@endsection @push('scripts')