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

{{ $user->name }}

@if($user->systems->count())
@foreach ($user->systems as $o) @endforeach
System Addresses
{{ $o->name }} {!! $o->akas->pluck('ftn')->join('
') !!}
@foreach ($user->systems as $o) @endforeach
Available Echos
{{ $o->name }} {!! $o->addresses->pluck('zone.domain.echoareas')->flatten()->pluck('name')->unique()->sort()->join(', ') !!}
@else

You are not linked to any BBS systems. Start here to link to your first.

@endif
@endsection @section('page-css') @append @section('page-scripts') @js('highcharts') @append