@extends('layouts.admin')
@section('title')
Location List
@endsection
@section('content')
All Locations
Location |
Description |
Nodes |
Servers |
|
|
@foreach ($locations as $location)
{{ $location->short }} |
{{ $location->long }} |
{{ $location->a_nodeCount }} |
{{ $location->a_serverCount }} |
|
|
@endforeach
{!! $locations->render() !!}
@endsection