@extends('layouts.librenmsv1') @section('title', __('Port Groups')) @section('content')
{{ __('Port Groups') }}
@can('create', \App\Models\PortGroup::class) {{ __('New Port Group') }} @endcan
@foreach($port_groups as $port_group) @endforeach
{{ __('Name') }} {{ __('Description') }} {{ __('Ports') }} {{ __('Actions') }}
{{ $port_group->name }} {{ $port_group->desc }} {{ $port_group->ports_count }} @can('update', $port_group) @endcan @can('delete', $port_group) @endcan
@endsection @section('scripts') @endsection @section('css') @endsection