@extends('layouts.app') @section('content')

About the FTN Clearing House

In FTN network addresses, a domain is the 5th dimension and used when a system supports 5D addressing, ie: zone:hub/host@domain.

Domains are used with zones to uniquely identify a FTN network.

Some legacy Fidonet software is not 5D aware and may behave unexpectedly when a domain is used

This system is aware of the following domains:

@if (\App\Models\Domain::count() == 0)

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

@else @foreach (\App\Models\Domain::cursor() as $oo) @endforeach
ID Active Domain DNS domain Zones
Add New Domain
{{ $oo->id }} {{ $oo->active ? 'YES' : 'NO' }} {{ $oo->name }} {{ $oo->dnsdomain }} {{ join(', ',$oo->zones->pluck('zone_id')->toArray()) }}
@endif
@endsection @section('page-scripts') @append