@extends('layouts.app') @section('title', 'Switches - ISP ERP System') @section('content')

Network Switches

Manage network switches and their configurations

All Switches ({{ $switches->total() }})

@if($switches->count() > 0)
@foreach($switches as $switch) @endforeach
# Name IP Address Community Brand Location Created At Actions
{{ $switches->firstItem() + $loop->index }} {{ $switch->name }} {{ $switch->ip }} {{ $switch->community }} {{ $switch->brand ?? '—' }} {{ $switch->location ?? '—' }} {{ $switch->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $switches->links() }}
@else
No switches found

Get started by adding your first network switch.

Add Switch
@endif
@endsection