@extends('layouts.app') @section('title', 'Create Attendance Log') @section('page-title', 'Create Attendance Log') @section('content') {{-- @section('page-description') --}} Create a new attendance punch log manually for an attendance device. {{-- @endsection --}} {{-- @section('page-actions') --}} Back {{-- @endsection --}}
@csrf
{{-- Header --}}

Attendance Log Information

Enter the device punch information and attendance verification details.

{{-- Form --}}
{{-- Attendance Device --}}

Select the attendance device from which this punch originated.

@error('attendance_device_id')

{{ $message }}

@enderror
{{-- Device User ID --}}

User identifier registered inside the attendance device.

@error('device_user_id')

{{ $message }}

@enderror
{{-- RFID Card Number --}}

RFID card number used for the punch, if available.

@error('rfid_card_number')

{{ $message }}

@enderror
{{-- Punched At --}}

Date and time when the attendance punch occurred.

@error('punched_at')

{{ $message }}

@enderror
{{-- Device Log ID --}}

Unique log identifier supplied by the attendance device.

@error('device_log_id')

{{ $message }}

@enderror
{{-- Verification Mode --}}

Method used by the device to verify the user.

@error('verification_mode')

{{ $message }}

@enderror
{{-- Direction --}}

Indicates whether the punch represents entry or exit.

@error('direction')

{{ $message }}

@enderror
{{-- Processed Status --}}

Normally new device logs should remain unprocessed until attendance processing runs.

@error('is_processed')

{{ $message }}

@enderror
{{-- Processed At --}}

Leave empty when the attendance log has not yet been processed.

@error('processed_at')

{{ $message }}

@enderror
{{-- Payload --}}

Optional raw JSON payload received from the attendance device.

@error('payload')

{{ $message }}

@enderror
{{-- Actions --}}
Cancel
@endsection