2023-03-20 12:04:22 +00:00
|
|
|
<div>
|
2023-05-08 07:16:50 +00:00
|
|
|
<form class="flex items-end justify-center gap-2" wire:submit.prevent='runCommand'>
|
2023-05-12 09:59:02 +00:00
|
|
|
<x-inputs.input noDirty noLabel id="command" label="Command" required />
|
2023-05-04 08:00:08 +00:00
|
|
|
<select wire:model.defer="server">
|
|
|
|
@foreach ($servers as $server)
|
|
|
|
<option value="{{ $server->uuid }}">{{ $server->name }}</option>
|
|
|
|
@endforeach
|
|
|
|
</select>
|
|
|
|
<x-inputs.button type="submit">Run</x-inputs.button>
|
|
|
|
</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>
|