mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 11:12:20 +00:00
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
21 lines
359 B
PHP
21 lines
359 B
PHP
@props([
|
|
"interval" => "30s",
|
|
"id",
|
|
"target" => null,
|
|
])
|
|
|
|
<div
|
|
id="{{ $id }}"
|
|
hx-get="{{ request()->getUri() }}"
|
|
hx-trigger="every {{ $interval }}"
|
|
@if ($target)
|
|
hx-target="{{ $target }}"
|
|
hx-select="{{ $target }}"
|
|
@else
|
|
hx-select="#{{ $id }}"
|
|
@endif
|
|
hx-swap="outerHTML"
|
|
>
|
|
{{ $slot }}
|
|
</div>
|