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

18 lines
504 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-06-07 21:44:16 +02:00
<nav class="flex pt-2 pb-10 text-sm">
<ol class="inline-flex items-center">
<li class="inline-flex items-center">
2023-06-07 15:08:35 +02:00
Execute commands on your servers without leaving the browser.
</li>
2023-06-07 21:44:16 +02:00
</ol>
</nav>
2023-06-07 10:33:45 +02:00
@if ($servers->count() > 0)
<livewire:run-command :servers="$servers" />
@else
2023-06-07 15:08:35 +02:00
<div>No validated servers found.
<x-use-magic-bar />
</div>
2023-06-07 10:33:45 +02:00
@endif
2023-03-20 13:04:22 +01:00
</x-layout>