lasthourcloud/resources/views/livewire/project/application/deployment-navbar.blade.php

13 lines
549 B
PHP
Raw Normal View History

2023-06-08 07:23:25 +00:00
<div class="flex items-center gap-2 pb-4">
<h2>Logs</h2>
2023-07-04 10:38:22 +00:00
@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
2023-06-30 13:57:40 +00:00
@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>
2023-05-31 12:42:37 +00:00
@endif
2023-05-31 10:38:36 +00:00
</div>