@extends('layouts.admin') @section('title') Database Hosts @endsection @section('content-header')

Database HostsDatabase hosts that servers can have databases created on.

@endsection @section('content')

Host List

@foreach ($hosts as $host) @endforeach
ID Name Host Port Username Databases Node
{{ $host->id }} {{ $host->name }} {{ $host->host }} {{ $host->port }} {{ $host->username }} {{ $host->databases_count }} @if(! is_null($host->node)) {{ $host->node->name }} @else None @endif
@endsection @section('footer-scripts') @parent @endsection