@extends('layout.mainlayout') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Core Settings
@csrf
enabled ? 'checked' : '' }}>
sync_enabled ? 'checked' : '' }}>
verify_ssl ? 'checked' : '' }}>
late_policy_enabled ? 'checked' : '' }}>
night_shift_enabled ? 'checked' : '' }}>
Used only when night shift is enabled.
Use `26` for 26th to 25th cycle.
@php $lateOverrides = (array) $settings->late_threshold_overrides; @endphp
@foreach($locations as $location)
@endforeach
Leave a location empty to use the default late threshold.
Device Location Mapping
@csrf
@csrf @forelse($mappings as $map) @empty @endforelse
Device Location Code Mapped Internal Location Active
{{ $map->device_location_code }} is_active ? 'checked' : '' }}>
No device location mapping found. Click "Fetch From Device" first.
@endsection