@extends('layouts.admin.master') @section('stylesheet') @endsection @section('content') @php $summaryCards = [ ['label' => 'Total Kamera', 'value' => $summary['total'] ?? 0, 'class' => ''], ['label' => 'Online', 'value' => $summary['online'] ?? 0, 'class' => 'cctv-stat--online'], ['label' => 'Offline', 'value' => $summary['offline'] ?? 0, 'class' => 'cctv-stat--offline'], ['label' => 'Maintenance', 'value' => $summary['maintenance'] ?? 0, 'class' => 'cctv-stat--maintenance'], ['label' => 'Recording', 'value' => $summary['recording'] ?? 0, 'class' => ''], ['label' => 'Perlu Perhatian', 'value' => $summary['critical'] ?? 0, 'class' => 'cctv-stat--critical'], ]; @endphp
Command Center Kota Tomohon

Live CCTV Command Center

--:--:-- {{ number_format($summary['online'] ?? 0) }} online {{ number_format($summary['total'] ?? 0) }} titik Kelola CCTV
Ringkasan Kota
@foreach ($summaryCards as $card)
{{ $card['label'] }}
{{ number_format($card['value']) }}
@endforeach
Peta Titik CCTV
Kecamatan
@foreach ($districtSummary as $district) @php $total = (int) ($district['total'] ?? 0); $online = (int) ($district['online'] ?? 0); $percentage = $total > 0 ? (int) round(($online / $total) * 100) : 0; @endphp @endforeach
Belum ada kamera aktif yang dipilih.

Pilih kamera

Peta dan grid akan mengikuti kamera yang dipilih.
Display Kamera
Semua kamera
@endsection @section('javascript') @endsection