@extends('backend.layout.main') @section('content')

{{__('db.Import CSV file (Device)')}}

@csrf
* Please take a note of the date format you get in the CSV file downloaded/exported from your attendance device(CSV). Now select the same date format from dropdown for the option named- 'Attendance device date format'
* The first line in downloaded file should remain as it is. Please do not change the order of columns in file.
* Please select csv/excel file (allowed file size 2MB)
@foreach($lims_attendance_all as $key=>$attendance) @if($attendance['status']) @else() @endif @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'] !!}
{{__('db.Present')}}
{{__('db.Late')}}
{{ $attendance['user_name'] }}
{{ Form::open(['route' => ['attendances.delete', [$attendance['date'], $attendance['employee_id']]], 'method' => 'post'] ) }} {{ Form::close() }}
@endsection @push('scripts')