@extends('layouts.app') @section('htmlheader_title') FTN Zones @endsection @section('content')

About FTN Zones

In FTN network addresses, a zone is the 3rd dimension and used when a system supports 3D (or better) addressing, ie: zone:net/node.point@domain.

Zones are used with domains to uniquely identify a FTN network. Within an FTN network there can be multiple zones with the same domain.

It is rare that a domain has multiple zones - unless it grows quite large. Zones can also be used to group systems into a common boundary.

This system is aware of the following zones in each domain @can('admin',(new \App\Models\Zone))(you can add more)@endcan:

@if (\App\Models\Zone::count() === 0) @can('admin',(new \App\Models\Zone))

There are no zones setup, to set up your first.

@else

There are no zones - you need to ask an admin to create one for you.

@endcan @else @foreach (\App\Models\Zone::orderBy('zone_id')->with(['domain','addresses'])->get() as $oo) @endforeach
Domain Zone Active Default Systems
{{ $oo->domain->name }} {{ $oo->zone_id }} {{ $oo->active ? 'YES' : 'NO' }} {{ $oo->default ? 'YES' : 'NO' }} {{ $oo->addresses->count() }}
@endif
@endsection @section('page-css') @css('datatables') @append @section('page-scripts') @js('datatables') @append