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

9 lines
217 B
PHP
Raw Normal View History

2023-03-20 12:04:22 +00:00
<x-layout>
2023-06-07 10:33:45 +02:00
<h1 class="pb-2">Command Center</h1>
@if ($servers->count() > 0)
<livewire:run-command :servers="$servers" />
@else
<div>No validated servers found.</div>
@endif
2023-03-20 12:04:22 +00:00
</x-layout>