2023-03-20 12:04:22 +00:00
|
|
|
<div>
|
2023-05-31 20:23:17 +00:00
|
|
|
<h1 class="pb-2">Command Center</h1>
|
2023-05-25 12:21:49 +00:00
|
|
|
<div class="pb-4 text-sm">Outputs are not saved at the moment, only available until you refresh or navigate.</div>
|
2023-05-08 07:16:50 +00:00
|
|
|
<form class="flex items-end justify-center gap-2" wire:submit.prevent='runCommand'>
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.input placeholder="ls -l" autofocus noDirty id="command" label="Command" required />
|
|
|
|
<x-forms.select label="Server" id="server" required>
|
2023-05-04 08:00:08 +00:00
|
|
|
@foreach ($servers as $server)
|
2023-05-12 13:39:07 +00:00
|
|
|
@if ($loop->first)
|
|
|
|
<option selected value="{{ $server->uuid }}">{{ $server->name }}</option>
|
|
|
|
@else
|
|
|
|
<option value="{{ $server->uuid }}">{{ $server->name }}</option>
|
|
|
|
@endif
|
2023-05-04 08:00:08 +00:00
|
|
|
@endforeach
|
2023-05-25 12:05:44 +00:00
|
|
|
</x-forms.select>
|
2023-06-02 10:34:45 +00:00
|
|
|
<x-forms.button class="h-8" type="submit">Run</x-forms.button>
|
2023-05-04 08:00:08 +00:00
|
|
|
</form>
|
2023-05-08 07:16:50 +00:00
|
|
|
<div class="container w-full pt-10 mx-auto">
|
|
|
|
<livewire:activity-monitor />
|
|
|
|
</div>
|
2023-03-20 12:04:22 +00:00
|
|
|
</div>
|