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

SNMP Logs

Manage SNMP monitoring logs

All SNMP Logs ({{ $snmpLogs->total() }})

@if($snmpLogs->count() > 0)
@foreach($snmpLogs as $log) @endforeach
# Switch Data Type Data Value Created At Actions
{{ $snmpLogs->firstItem() + $loop->index }} {{ $log->switch->name }}
{{ $log->switch->ip }}
{{ $log->data_type }}
{{ Str::limit($log->data_value, 80) }}
{{ $log->created_at->format('M d, Y h:i A') }}
@csrf @method('DELETE')
{{ $snmpLogs->links() }}
@else
No SNMP logs found

Get started by adding your first SNMP log.

Add Log
@endif
@endsection