coolify/resources/views/livewire/project/application/deployment-navbar.blade.php
2023-10-17 11:10:33 +02:00

13 lines
549 B
PHP

<div class="flex items-center gap-2 pb-4">
<h2>Logs</h2>
@if ($is_debug_enabled)
<x-forms.button wire:click.prevent="show_debug">Hide Debug Logs</x-forms.button>
@else
<x-forms.button wire:click.prevent="show_debug">Show Debug Logs</x-forms.button>
@endif
@if (data_get($application_deployment_queue, 'status') === 'in_progress' ||
data_get($application_deployment_queue, 'status') === 'queued')
<x-forms.button wire:click.prevent="cancel">Cancel Deployment</x-forms.button>
@endif
</div>