@extends('layout.main') @section('main')
Wireless Interfaces Information

Here you can see the info about the wireless interfaces on this router.

@csrf
@foreach (json_decode($data) as $interface) @endforeach
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')
@csrf @method('PUT')
@else
@csrf @method('PUT')
@endif
@endsection