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

ISP Interfaces

Add Interface
@if(session('success'))
{{ session('success') }}
@endif
@forelse($interfaces as $interface) @empty @endforelse
ID Interface Name Device Site Type Status Actions
{{ $interface->interface_id }} {{ $interface->interface_name ?? '-' }} {{ $interface->device->device_name ?? '-' }} {{ $interface->device->site->site_name ?? '-' }} {{ $interface->interface_type ?? '-' }} {{ $interface->status }}
@csrf @method('DELETE')
No interfaces found
{{ $interfaces->links() }}
@endsection