@extends('layouts.app') @section('title', 'Data Petugas') @section('content')
| Nama | NIP | Unit | Polsek | Status | Lokasi |
|---|---|---|---|---|---|
| {{ $officer->user->name }} | {{ $officer->nip }} | {{ ucfirst($officer->unit_type) }} | {{ $officer->polsek?->name ?? '-' }} | {{ ucfirst(str_replace('_', ' ', $officer->status)) }} | @if($officer->current_latitude && $officer->current_longitude) {{ $officer->current_latitude }}, {{ $officer->current_longitude }} @else - @endif |
| Tidak ada data petugas | |||||