@extends('layouts.app') @section('htmlheader_title') Systems @endsection @php use App\Models\System; @endphp @section('content')

About BBS Systems

BBS Systems Send and Receive Echomail and Files.

This system is aware of the following systems @can('create',(new System))(you can register more):@endcan @can('admin',(new System))(you can add more):@endcan

@if (System::active()->count() === 0) @can('create',(new System))

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

@else

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

@endcan @else @foreach (System::with(['addresses.zone.domain'])->get() as $oo) @endforeach
ID System Sysop Location Connect Address ZeroTier ID Addresses Active
{{ $oo->id }} {{ $oo->name }} {{ $oo->sysop }} {{ $oo->location }} @switch($oo->method) @case(23)Telnet@break @case(22)SSH@break @case(519)rlogin@break @default No details @endswitch {{ $oo->addresses->pluck('ftn')->join(', ') }} {{ $oo->zt_id }} {{ $oo->addresses->count() }} {{ $oo->active ? 'Active' : 'Not Active' }}
@endif
@endsection @section('page-css') @css('datatables') @append @section('page-scripts') @js('datatables') @append