@extends('layouts.app')
@section('title', 'ODP Management')
@section('content')
@include('admin.partials.sidebar')
@include('admin.partials.topbar')
ODP Management
Manage Optical Distribution Points
| ODP Name |
Code |
Location |
Capacity |
Status |
Actions |
@forelse($odps as $odp)
|
|
{{ $odp->code }}
|
{{ $odp->location_name ?? '-' }}
|
{{ $odp->capacity - $odp->available_ports }}/{{ $odp->capacity }}
|
{{ ucfirst($odp->status) }}
|
|
@empty
|
No ODPs found
|
@endforelse
{{ $odps->links() }}
@endsection