@extends('layouts.admin') @section('title') Server — {{ $server->name }}: Mounts @endsection @section('content-header')
{{ $server->name }}
Manage server mounts.
Admin
Servers
{{ $server->name }}
Mounts
@endsection @section('content') @include('admin.servers.partials.navigation')
Available Mounts
@foreach ($mounts as $mount) @if (! in_array($mount->id, $server->mounts->pluck('id')->toArray())) @else @endif @endforeach
ID
Name
Source
Target
Status
{{ $mount->id }}
{{ $mount->name }}
{{ $mount->source }}
{{ $mount->target }}
Unmounted
{!! csrf_field() !!}
Mounted
@method('DELETE') {!! csrf_field() !!}
@endsection