@extends('layouts.app') @section('title', 'Attendance Locations') @section('content')

Attendance Locations (Geofence)

Staff clocking in from a phone browser must be within the radius of at least one active location below, or their clock-in is flagged for manager review (it's never blocked outright — a bad GPS signal shouldn't stop someone from clocking in).

@foreach ($locations as $loc) @endforeach
NameCoordinatesRadiusStatus
{{ $loc->name }} {{ $loc->latitude }}, {{ $loc->longitude }} {{ $loc->radius_m }}m
@csrf @method('PUT')
@csrf @method('DELETE')
@endsection @section('scripts') @endsection