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

About FTN Domains

In FTN network addresses, a domain is the 5th dimension and used when a system supports 5D addressing, ie: zone:net/node.point@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 @can('admin',(new \App\Models\Domain))(you can add more)@endcan:

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

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

@else

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

@endcan @else @foreach (\App\Models\Domain::orderBy('name')->with(['zones'])->get() as $oo) @endforeach
ID Domain Active DNS domain Zones
{{ $oo->id }} {{ $oo->name }} {{ $oo->active ? 'YES' : 'NO' }} {{ $oo->dnsdomain }} {{ $oo->zones->pluck('zone_id')->sort()->join(', ') }}
@endif
@endsection @section('page-css') @css('datatables') @append @section('page-scripts') @js('datatables') @append