coolify/resources/views/livewire/activity-monitor.blade.php

10 lines
409 B
PHP
Raw Normal View History

2023-05-04 09:11:11 +02:00
<div>
2023-05-03 07:23:45 +02:00
@isset($this->activity)
<span>Status: {{ $this->activity?->properties->get('status') }}</span>
2023-05-08 09:16:50 +02:00
<pre class="flex flex-col-reverse w-full overflow-y-hidden"
2023-05-03 21:35:34 +02:00
@if ($isPollingActive) wire:poll.750ms="polling" @endif>{{ \App\Actions\CoolifyTask\RunRemoteProcess::decodeOutput($this->activity) }}</pre>
2023-05-08 09:16:50 +02:00
@else
<span>Output will be here...</span>
2023-05-03 07:23:45 +02:00
@endisset
</div>