2026-07-15 15:34:22 +00:00
|
|
|
<div>
|
|
|
|
|
@if ($section === 'retention')
|
|
|
|
|
@include('livewire.project.shared.storages.volume-backups.retention')
|
|
|
|
|
@elseif ($section === 's3')
|
|
|
|
|
@include('livewire.project.shared.storages.volume-backups.s3')
|
|
|
|
|
@elseif ($section === 'executions')
|
|
|
|
|
@include('livewire.project.shared.storages.volume-backups.executions')
|
|
|
|
|
@elseif ($section === 'danger')
|
|
|
|
|
@include('livewire.project.shared.storages.volume-backups.danger')
|
|
|
|
|
@else
|
|
|
|
|
@include('livewire.project.shared.storages.volume-backups.general')
|
2026-07-15 13:47:57 +00:00
|
|
|
@endif
|
|
|
|
|
|
2026-07-19 21:15:55 +00:00
|
|
|
@script
|
|
|
|
|
<script>
|
|
|
|
|
window.download_volume_backup_file = function(executionId) {
|
|
|
|
|
window.open('/download/volume-backup/' + executionId, '_blank');
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
@endscript
|
|
|
|
|
</div>
|