@extends('layouts.app') @section('title', 'Detail ODP - ' . $topOdp->nama_odp) @section('content')

Detail ODP

{{ $topOdp->nama_odp }}

Informasi Dasar
{{ $topOdp->nama_odp }}
{{ $topOdp->kode_odp }}
{{ $topOdp->topOdc->nama_odc ?? '-' }}
@if($topOdp->topOdc && $topOdp->topOdc->topOlt) OLT: {{ $topOdp->topOdc->topOlt->nama_server_olt }} @endif
@if(($topOdp->parent_type ?? 'odc') === 'odp') ODP Cascading @else Direct ODC @endif
@if(($topOdp->parent_type ?? 'odc') === 'odc')
{{ str_replace('port_', 'Port ', $topOdp->odc_port ?? 'N/A') }}
@else
@if($topOdp->parentOdp)
{{ $topOdp->parentOdp->nama_odp }}
Kode: {{ $topOdp->parentOdp->kode_odp }} @else Tidak ada parent ODP @endif
@if($topOdp->splitter_ratio)
{{ $topOdp->splitter_ratio }}
@endif @if($topOdp->splitter_power_ratio)
{{ $topOdp->splitter_power_ratio }}
@endif @endif
{{ $topOdp->jml_port_odp }} Port
@if($topOdp->redaman_rata_rata) {{ $topOdp->redaman_format }} @else Belum diukur @endif
{{ $topOdp->status_label }}
@if($topOdp->keterangan)
{{ $topOdp->keterangan }}
@endif
@if($topOdp->foto_odp)
Foto ODP
Foto {{ $topOdp->nama_odp }}
@endif @if($topOdp->koordinat)
Lokasi
@if($topOdp->lokasi)
{{ $topOdp->lokasi }}
@endif
{{ $topOdp->latitude }}
{{ $topOdp->longitude }}
@endif
Aksi Cepat
Edit ODP
@csrf
@csrf
Statistik ODP
{{ $topOdp->jml_port_odp }}
Total Port
0
Port Terisi
Utilisasi: 0%
Info Teknis
ID ODP:
#{{ $topOdp->id }}
Tipe:
{{ $topOdp->jml_port_odp }} Port
@if($topOdp->redaman_rata_rata)
Redaman:
{{ $topOdp->redaman_format }}
@endif @if($topOdp->koordinat)
Koordinat:
{{ $topOdp->koordinat }}
@endif
Dibuat:
{{ $topOdp->created_at->format('d/m/Y H:i') }}
Diupdate:
{{ $topOdp->updated_at->format('d/m/Y H:i') }}
@if($topOdp->childOdps && $topOdp->childOdps->count() > 0)
Child ODPs (Cascading)
ODP Cascading: Berikut adalah ODPs yang mengambil uplink dari ODP ini melalui splitter.
@foreach($topOdp->childOdps as $childOdp)
{{ $childOdp->nama_odp }}

Kode: {{ $childOdp->kode_odp }}
@if($childOdp->splitter_ratio) Splitter: {{ $childOdp->splitter_ratio }}
@endif @if($childOdp->splitter_power_ratio) Power Ratio: {{ $childOdp->splitter_power_ratio }}
@endif Status: {{ $childOdp->status_label }}

@endforeach
@endif
@push('styles') @endpush @push('scripts') @endpush @endsection