@extends('admin.layouts.app') @section('title',get_setting('site_name').' Attendance Manual Sync') @section('content')
Attendance Not Sync({{count($tmpRecords)}})
@if(count($tmpRecords)>0) Attendance Sync @endif
@forelse($tmpRecords as $record) @empty @endforelse
Employee Name Date Time
{{\App\Models\User::where('id',$record->user_id)->value('name')}} {{date('d-m-Y, H-i a',strtotime($record->timestamp))}}
No record found
@endsection