coolify/resources/views/command-center.blade.php

13 lines
420 B
PHP
Raw Normal View History

2023-03-20 13:04:22 +01:00
<x-layout>
2023-06-07 15:08:35 +02:00
<h1>Command Center</h1>
2023-08-14 14:00:10 +02:00
<div class="subtitle">Execute commands on your servers without leaving the browser.</div>
2023-06-07 10:33:45 +02:00
@if ($servers->count() > 0)
2023-08-11 20:19:42 +02:00
<livewire:run-command :servers="$servers" />
2023-06-07 10:33:45 +02:00
@else
2023-06-13 08:47:14 +02:00
<div>
2023-08-14 14:00:10 +02:00
<div>No servers found. Without a server, you won't be able to do much.</div>
<x-use-magic-bar link="/server/new" />
2023-06-07 15:08:35 +02:00
</div>
2023-06-07 10:33:45 +02:00
@endif
2023-03-20 13:04:22 +01:00
</x-layout>