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

{{ $server->name }}Gerenciar montagens do servidor.

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

Montagens disponíveis

@foreach ($mounts as $mount) @if (! in_array($mount->id, $server->mounts->pluck('id')->toArray())) @else @endif @endforeach
ID Nome Origem Objetivo Status
{{ $mount->id }} {{ $mount->name }} {{ $mount->source }} {{ $mount->target }} Unmounted
{!! csrf_field() !!}
Montado
@method('DELETE') {!! csrf_field() !!}
@endsection