2024-01-07 15:23:41 +00:00
|
|
|
<div>
|
2024-06-07 09:01:10 +00:00
|
|
|
<x-slot:title>
|
2026-06-20 00:23:12 +00:00
|
|
|
{{ data_get_str($database, 'name')->limit(10) }} > Backup | MapleDeploy
|
2024-06-07 09:01:10 +00:00
|
|
|
</x-slot>
|
2026-08-03 21:11:54 +00:00
|
|
|
|
2024-01-07 15:23:41 +00:00
|
|
|
<livewire:project.database.heading :database="$database" />
|
2026-07-15 15:34:22 +00:00
|
|
|
|
2026-08-16 18:54:50 +00:00
|
|
|
<section class="application-settings-workspace mt-4 w-full max-w-none lg:mt-0">
|
|
|
|
|
<div class="grid min-w-0 gap-8 xl:grid-cols-[210px_minmax(0,1fr)] xl:gap-8">
|
2026-08-03 21:11:54 +00:00
|
|
|
<x-backup-sidebar context="database" :parameters="$parameters" :section="$section" />
|
|
|
|
|
|
2026-08-05 13:15:50 +00:00
|
|
|
<div class="min-w-0">
|
2026-08-03 21:11:54 +00:00
|
|
|
@if ($section === 'executions')
|
|
|
|
|
<livewire:project.database.backup-executions :backup="$backup" />
|
|
|
|
|
@else
|
|
|
|
|
<livewire:project.database.backup-edit :backup="$backup" :available-s3-storages="$s3s"
|
|
|
|
|
:status="data_get($database, 'status')" :section="$section"
|
|
|
|
|
wire:key="database-backup-{{ $backup->uuid }}-{{ $section }}" />
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|
2026-07-15 15:34:22 +00:00
|
|
|
</div>
|
2026-08-03 21:11:54 +00:00
|
|
|
</section>
|
2024-01-07 15:23:41 +00:00
|
|
|
</div>
|