@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 }}@if($oo->system->hold)@endif {{ $oo->system->name }} {{ $oo->system->sysop }} {{ $oo->system->location }} {{ $oo->system->last_session ? $oo->system->last_session->format('Y-m-d H:i') : '-' }} {{ $oo->system->addresses->where('zone_id',$oo->zone_id)->pluck('ftn4d')->join(', ') }} {{ $oo->system->zt_id }}
@endif
@endsection @section('page-css') @css('datatables') @append @section('page-scripts') @js('datatables') @append