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

Our Systems

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

There are no systems configured here.

@else

These BBS systems are configured here.

@foreach (\App\Models\SystemZone::select('*')->with(['system','zone.domain'])->get() as $oo) @endforeach
Domain ID System Sysop Location Last Seen Address ZeroTier ID
{{ $oo->zone->domain->name }} {{ $oo->system_id }} {{ $oo->system->name }} {{ $oo->system->sysop }} {{ $oo->system->location }} {{ $oo->system->last_session ? $oo->system->last_session->format('Y-m-d H:i') : '-' }} {{ join(',',$oo->system->addresses->where('zone_id',$oo->zone_id)->pluck('ftn')->toArray()) }} {{ $oo->system->zt_id }}
@endif
@endsection @section('page-scripts') @append