@extends('layouts.librenmsv1') @section('title', __('Interface Group')) @section('content')
@if($ports->count() == 0)
{{ __("No ports in port group") }} {{ $group->name }}
@else
{{ __("Total Graph for port group") }} {{ $group->name }}
@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