@extends('layouts.app') @section('title', 'Upload Attendance File') @section('breadcrumbs') @endsection @section('content')

Upload Attendance File

Upload a CSV or Excel file to bulk import attendance records.

{{-- Instructions --}}

File Requirements

  • • Supported formats: .csv, .xlsx, .xls
  • • Maximum file size: 10MB
  • • Must include employee codes and dates
  • • Existing records for the same employee + date will be overwritten
  • • Time format: HH:MM (24h) or hh:mm AM/PM
  • • Date formats: DD/MM/YYYY, YYYY-MM-DD, or MM/DD/YYYY
{{-- Download Template --}}

Download Template

Get a sample CSV with the correct format

Download CSV
{{-- Upload Form --}}
@csrf
@error('file')

{{ $message }}

@enderror
View Upload History
@endsection