@extends('layouts.app') @section('title', 'ISP Links') @section('page-title', 'ISP Links') @section('content')

ISP Links

Add Link
@if(session('success'))
{{ session('success') }}
@endif
@forelse($links as $link) @empty @endforelse
ID From Interface To Interface Capacity (Mbps) Fiber Type Actions
{{ $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 ?? '-' }}
@csrf @method('DELETE')
No links found
{{ $links->links() }}
@endsection