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