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

13 lines
365 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-16 12:35:40 +02:00
<div class="pt-2 pb-10">Execute commands on your servers without leaving the browser.</div>
2023-06-07 10:33:45 +02:00
@if ($servers->count() > 0)
<livewire:run-command :servers="$servers" />
@else
2023-06-13 08:47:14 +02:00
<div>
<div>No validated servers found.</div>
2023-06-07 15:08:35 +02:00
<x-use-magic-bar />
</div>
2023-06-07 10:33:45 +02:00
@endif
2023-03-20 13:04:22 +01:00
</x-layout>