@extends('layouts.app') @section('page-header') @endsection @section('htmlheader_title') View a Device @endsection @section('modal') @foreach($device->DHCP_Servers as $server) @endforeach @endsection @section('contentheader_title') View a Device @endsection @section('main-content')

Basic Device Info

Device Manufacturer:

{{$device->manufacturer}}

Device Model:

{{$device->model}} {{$device->revision or ''}}

Device Type:

{{$device->type or 'Not Available'}}

Management Interface:

{{$webaddress}}

@if($device->type == 'Radio')

Radio Frequency:

{{$frequency}}

TX Power:

{{$txpower}}

@endif
Device
@if($device->type == 'Router')

DHCP Server's

@foreach($device->DHCP_Servers as $server) @endforeach
Name Subnet Pool Start Pool End Gateway DNS 1 DNS 2 Leased Leases
{{ $server->name}} {{ $server->subnet}} {{ $server->start}} {{ $server->stop}} {{ $server->router}} {{ $server->dns1}} {{ $server->dns2 or 'Not Set'}} {{ $server->leased}}
Name Subnet Pool Start Pool End Gateway DNS 1 DNS 2 Leased Leases
@elseif ($device->type == 'Radio')

Signal

Zoom: click-drag, Pan: shift-click-drag, Restore: double-click

Noise

Zoom: click-drag, Pan: shift-click-drag, Restore: double-click

CCQ

Zoom: click-drag, Pan: shift-click-drag, Restore: double-click

Latency

Zoom: click-drag, Pan: shift-click-drag, Restore: double-click

@else @endif

Device Ports

@foreach($device->ports as $port) @endforeach
Description Name Mac Address IP Address
{{ $port->readable_name or 'Not Set'}} {{ $port->name}} {{ $port->mac}} @foreach($port->ips as $ip) {{ $ip->address}} @break @endforeach
Description Name Mac Address IP Address
@foreach($device->ports as $port)

{{$port->name}} Utilization in Mbps

Zoom: click-drag, Pan: shift-click-drag, Restore: double-click

@endforeach @endsection @section('page-scripts') @foreach($device->ports as $port) @endforeach @if($device->type == 'Radio') @endif @endsection