Path: blob/1.0-develop/resources/views/admin/locations/view.blade.php
7461 views
@extends('layouts.admin')12@section('title')3Locations → View → {{ $location->short }}4@endsection56@section('content-header')7<h1>{{ $location->short }}<small>{{ str_limit($location->long, 75) }}</small></h1>8<ol class="breadcrumb">9<li><a href="{{ route('admin.index') }}">Admin</a></li>10<li><a href="{{ route('admin.locations') }}">Locations</a></li>11<li class="active">{{ $location->short }}</li>12</ol>13@endsection1415@section('content')16<div class="row">17<div class="col-sm-6">18<div class="box box-primary">19<div class="box-header with-border">20<h3 class="box-title">Location Details</h3>21</div>22<form action="{{ route('admin.locations.view', $location->id) }}" method="POST">23<div class="box-body">24<div class="form-group">25<label for="pShort" class="form-label">Short Code</label>26<input type="text" id="pShort" name="short" class="form-control" value="{{ $location->short }}" />27</div>28<div class="form-group">29<label for="pLong" class="form-label">Description</label>30<textarea id="pLong" name="long" class="form-control" rows="4">{{ $location->long }}</textarea>31</div>32</div>33<div class="box-footer">34{!! csrf_field() !!}35{!! method_field('PATCH') !!}36<button name="action" value="edit" class="btn btn-sm btn-primary pull-right">Save</button>37<button name="action" value="delete" class="btn btn-sm btn-danger pull-left muted muted-hover"><i class="fa fa-trash-o"></i></button>38</div>39</form>40</div>41</div>42<div class="col-sm-6">43<div class="box">44<div class="box-header with-border">45<h3 class="box-title">Nodes</h3>46</div>47<div class="box-body table-responsive no-padding">48<table class="table table-hover">49<tr>50<th>ID</th>51<th>Name</th>52<th>FQDN</th>53<th>Servers</th>54</tr>55@foreach($location->nodes as $node)56<tr>57<td><code>{{ $node->id }}</code></td>58<td><a href="{{ route('admin.nodes.view', $node->id) }}">{{ $node->name }}</a></td>59<td><code>{{ $node->fqdn }}</code></td>60<td>{{ $node->servers->count() }}</td>61</tr>62@endforeach63</table>64</div>65</div>66</div>67</div>68@endsection697071