| {{ __('Name') }} | {{ __('Type') }} | {{ __('MTU') }} | {{ __('MAC Address') }} | {{ __('Status') }} | {{ __('Act') }} |
|---|---|---|---|---|---|
| {{ $i['name'] ?? '-' }} {!! ($i['running'] ?? 'false') === 'true' ? '' : '' !!} | {{ $i['type'] ?? '-' }} | {{ $i['mtu'] ?? '-' }} / {{ $i['actual-mtu'] ?? '-' }} | {{ $i['mac-address'] ?? 'N/A' }} |
@if(($i['disabled'] ?? 'false') === 'false') {{ __('Active') }} @else {{ __('Disabled') }} @endif | @if(($i['disabled'] ?? 'false') !== 'false') @else @endif |
| {{ __('No interfaces found.') }} | |||||
| {{ __('Name') }} | {{ __('VLAN ID') }} | {{ __('Interface') }} | {{ __('MTU') }} | {{ __('Comment') }} | {{ __('Act') }} |
|---|---|---|---|---|---|
| {{ $v['name'] ?? '-' }} | {{ $v['vlan-id'] ?? '-' }} | {{ $v['interface'] ?? '-' }} | {{ $v['mtu'] ?? '-' }} | {{ $v['comment'] ?? '' }} | |
| {{ __('No VLANs configured.') }} | |||||
| {{ __('Bridge Name') }} | {{ __('MTU') }} | {{ __('MAC Address') }} | {{ __('Comment') }} | {{ __('Act') }} |
|---|---|---|---|---|
| {{ $b['name'] ?? '-' }} | {{ $b['mtu'] ?? '-' }} | {{ $b['mac-address'] ?? 'N/A' }} |
{{ $b['comment'] ?? '' }} | |
| {{ __('No bridges configured.') }} | ||||
| {{ __('Interface') }} | {{ __('Bridge') }} | {{ __('Status') }} |
|---|---|---|
| {{ $p['interface'] ?? '-' }} | {{ $p['bridge'] ?? '-' }} | {{ $p['status'] ?? '-' }} |
| {{ __('No bridge ports configured.') }} | ||