@extends('layouts.admin') @section('title') Server — {{ $server->name }}: Mounts @endsection @section('content-header')

{{ $server->name }}Manage server mounts.

@endsection @section('content') @include('admin.servers.partials.navigation')

Available Mounts

@foreach ($mounts as $mount) @endforeach
ID Name Source Target Status
{{ $mount->id }} {{ $mount->name }} {{ $mount->source }} {{ $mount->target }} @if ($mount->id == 2) Unmounted @else Mounted @endif @if ($mount->id == 2) @else @endif
@endsection @section('footer-scripts') @parent @endsection