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

About BBS Systems

BBS Systems Send and Receive Echomail and Files.

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

@if (\App\Models\System::active()->count() === 0) @can('create',(new \App\Models\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 (\App\Models\System::active()->with(['addresses.zone.domain'])->get() as $oo) @endforeach
ID System Sysop Location Connect Address ZeroTier ID Addresses
{{ $oo->id }} {{ $oo->name }} @if(! $oo->active)[i]@endif {{ $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() }}
@endif
@endsection @section('page-css') @css('datatables') @append @section('page-scripts') @js('datatables') @append