@extends('layouts.app') @section('title', 'Network Map') @push('styles') @endpush @section('content')
@include('admin.partials.sidebar')
@include('admin.partials.topbar')

Network Map

View all ODP locations on the map

ODP List

Total ODPs

{{ $odps->count() }}

Active

{{ $odps->where('status', 'active')->count() }}

Full

{{ $odps->where('status', 'full')->count() }}

Maintenance

{{ $odps->where('status', 'maintenance')->count() }}

ODP Locations

Active
Full
Maintenance

ODP Details

@foreach($odps as $odp)

{{ $odp->name }}

{{ $odp->code }}

{{ ucfirst($odp->status) }}

{{ $odp->address ?? 'No address' }}

{{ $odp->used_ports }}/{{ $odp->capacity }} ports View
@endforeach
@endsection @push('scripts') @endpush