@extends('layouts.app') @section('title', 'Lokasi Kantor & Geofencing') @section('page-title', 'Lokasi Kantor & Radius Geofence') @section('page-subtitle', 'Kelola koordinat titik pusat kantor resmi, radius meter presensi, dan toleransi akurasi GPS.') @push('styles') @endpush @section('content')
Buka Layar QR Code Kantor
@forelse($locations as $loc)
{{ $loc->name }}
@if($loc->is_active) Aktif @else Nonaktif @endif

{{ $loc->address ?? 'Alamat belum ditentukan' }}

LATITUDE:{{ $loc->latitude }}
LONGITUDE:{{ $loc->longitude }}
RADIUS GEOFENCE:{{ $loc->radius_meters }} Meter
MAX AKURASI GPS:{{ $loc->max_gps_accuracy ?? 50 }} Meter
@csrf @method('DELETE')
{{-- Modal Edit Location --}} @empty
Belum ada lokasi kantor yang terdaftar. Silakan klik tombol "Tambah Lokasi Kantor".
@endforelse
{{-- Modal Create Location --}} @endsection @push('scripts') @endpush