Files
landing-api/resources/views/filament/pages/rcon-console.blade.php
T
leonm 803ec74928
CI / 🧪 Tests Laravel (push) Successful in 1m1s
CI / 🐳 Build & Push Image (push) Successful in 10s
feat: rcon console
2026-07-10 23:49:24 +02:00

19 lines
639 B
PHP

<x-filament-panels::page>
<form wire:submit="executeCommand">
{{ $this->form }}
<div class="mt-4">
<x-filament::button type="submit">
Exécuter
</x-filament::button>
</div>
</form>
@if ($output !== null)
<div class="mt-6 space-y-2">
<h3 class="text-lg font-medium">Résultat du serveur :</h3>
<pre class="p-4 bg-gray-950 text-emerald-400 rounded-xl overflow-x-auto whitespace-pre-wrap font-mono text-sm leading-relaxed border border-gray-800 shadow-inner">{{ $output }}</pre>
</div>
@endif
</x-filament-panels::page>