@extends('layouts.librenmsv1') @section('title', __('Interface Types')) @section('content')
@if($ports->count() == 0)
{{ __("No ports found for type") }} {{ implode(' + ', $types) }}
@else
{{ __("Total Graph for ports of type") }} : {{ implode(' + ', $types) }}
@endif @foreach($ports as $port)
{{ $port->port_descr_descr }}
{{ $port->port_descr_speed }}
{{ $port->port_descr_circuit }}
{{ $port->port_descr_notes }}
-
@if($port->macAccounting_count > 0)
{{ __("MAC Accounting") }}
@endif
@endforeach
@endsection