coolify/resources/views/server/all.blade.php

37 lines
1.5 KiB
PHP
Raw Normal View History

2023-05-22 15:47:40 +02:00
<x-layout>
2023-06-07 15:08:35 +02:00
<h1>Servers</h1>
2023-06-16 12:35:40 +02:00
<div class="pt-2 pb-10 ">All Servers</div>
2023-06-14 12:48:29 +02:00
<div class="grid gap-2 lg:grid-cols-2">
2023-06-02 15:15:12 +02:00
@forelse ($servers as $server)
2023-06-22 10:04:39 +02:00
<div x-data x-on:click="goto('{{ $server->uuid }}')" @class([
'gap-2 border cursor-pointer box group',
'border-transparent' => $server->settings->is_reachable,
'border-red-500' => !$server->settings->is_reachable,
])>
<div class="flex flex-col mx-6">
<div class=" group-hover:text-white">
{{ $server->name }}
@if (!$server->settings->is_reachable)
<span class="text-xs text-error">not validated yet</span>
@endif
</div>
<div class="text-xs group-hover:text-white"
href="{{ route('server.show', ['server_uuid' => data_get($server, 'uuid')]) }}">
{{ $server->description }}</div>
2023-06-07 10:33:45 +02:00
</div>
2023-06-22 10:04:39 +02:00
<div class="flex-1"></div>
</div>
2023-06-02 15:15:12 +02:00
@empty
2023-06-07 17:24:37 +02:00
<div>
<div>No servers found. Without a server, you won't be able to do much.</div>
<x-use-magic-bar />
2023-06-02 15:15:12 +02:00
</div>
@endforelse
2023-06-22 10:04:39 +02:00
<script>
function goto(uuid) {
window.location.href = '/server/' + uuid;
}
</script>
2023-06-02 15:15:12 +02:00
</div>
2023-05-22 15:47:40 +02:00
</x-layout>