mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
16 lines
535 B
PHP
16 lines
535 B
PHP
<div>
|
|
@if ($site->deploymentScript)
|
|
<form
|
|
id="deploy"
|
|
hx-post="{{ route("servers.sites.application.deploy", ["server" => $server, "site" => $site]) }}"
|
|
hx-swap="outerHTML"
|
|
hx-select="#deploy"
|
|
>
|
|
<x-primary-button class="flex items-center justify-between" :active="true" hx-disable>
|
|
{{ __("Deploy") }}
|
|
<x-heroicon name="o-play-circle" class="ml-1 h-5 w-5" />
|
|
</x-primary-button>
|
|
</form>
|
|
@endif
|
|
</div>
|