@extends('layout.main') @section('main')
Here you can see the info about the wireless interfaces on this router.
ID | Name | Enabled | MAC Address | Type | MTU | Running | Rx Chains | Tx Chains | SSID | Security Profile | Frequency | Rate Set | Tx Power Mode | Action | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $interface->{'.id'} }} | {{ $interface->name }} | {{ $interface->disabled == 'true' ? 'No' : 'Yes' }} | {{ $interface->{'mac-address'} ?? 'N/A' }} | {{ $interface->{'interface-type'} }} | {{ $interface->{'mtu'} }} | {{ $interface->running == 'true' ? 'Yes' : 'No' }} | {{ $interface->{'rx-chains'} }} | {{ $interface->{'tx-chains'} }} | {{ $interface->{'ssid'} }} | {{ $interface->{'security-profile'} }} | {{ $interface->{'frequency'} }} MHz | {{ $interface->{'rate-set'} }} | {{ $interface->{'tx-power-mode'} }} | @if ($interface->disabled == 'true') @else @endif |