@extends('layouts.app')
@section('title', 'ISP Links')
@section('page-title', 'ISP Links')
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
| ID |
From Interface |
To Interface |
Capacity (Mbps) |
Fiber Type |
Actions |
@forelse($links as $link)
| {{ $link->link_id }} |
{{ $link->fromInterface->interface_name ?? '-' }} {{ $link->fromInterface->device->site->site_name ?? '' }} |
{{ $link->toInterface->interface_name ?? '-' }} {{ $link->toInterface->device->site->site_name ?? '' }} |
{{ $link->capacity_mbps ?? '-' }} |
{{ $link->fiber_type ?? '-' }} |
|
@empty
| No links found |
@endforelse
{{ $links->links() }}
@endsection