mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
woah
This commit is contained in:
29
resources/views/server/all.blade.php
Normal file
29
resources/views/server/all.blade.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<x-layout>
|
||||
<h1>Servers</h1>
|
||||
<div class="pb-10 text-sm breadcrumbs">
|
||||
<ul>
|
||||
<li>
|
||||
All Servers
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
@forelse ($servers as $server)
|
||||
<a class="text-center hover:no-underline box group"
|
||||
href="{{ route('server.show', ['server_uuid' => data_get($server, 'uuid')]) }}">
|
||||
<div class="group-hover:text-white">
|
||||
<div>{{ $server->name }}</div>
|
||||
@if (!$server->settings->is_validated)
|
||||
<div class="text-xs text-error">not validated</div>
|
||||
@endif
|
||||
</div>
|
||||
</a>
|
||||
@empty
|
||||
<div class="flex flex-col">
|
||||
<div>Without a server, you won't be able to do much.</div>
|
||||
<div>Let's <a class="text-lg underline text-warning" href="{{ route('server.create') }}">create</a> your
|
||||
first one.</div>
|
||||
</div>
|
||||
@endforelse
|
||||
</div>
|
||||
</x-layout>
|
||||
Reference in New Issue
Block a user