2023-08-09 16:47:24 +02:00
|
|
|
<x-layout>
|
|
|
|
<h1>Backups</h1>
|
|
|
|
<livewire:project.database.heading :database="$database"/>
|
2023-08-09 17:57:27 +02:00
|
|
|
<x-modal modalId="startDatabase">
|
|
|
|
<x-slot:modalBody>
|
|
|
|
<livewire:activity-monitor header="Startup Logs"/>
|
|
|
|
</x-slot:modalBody>
|
|
|
|
<x-slot:modalSubmit>
|
|
|
|
<x-forms.button onclick="startDatabase.close()" type="submit">
|
|
|
|
Close
|
|
|
|
</x-forms.button>
|
|
|
|
</x-slot:modalSubmit>
|
|
|
|
</x-modal>
|
2023-08-09 16:47:24 +02:00
|
|
|
<div class="pt-6">
|
2023-08-11 16:13:53 +02:00
|
|
|
<livewire:project.database.backup-edit :backup="$backup" :s3s="$s3s"/>
|
2023-08-10 15:52:54 +02:00
|
|
|
<h3 class="py-4">Executions</h3>
|
2023-08-11 10:42:57 +02:00
|
|
|
<livewire:project.database.backup-executions :backup="$backup" :executions="$executions"/>
|
2023-08-09 16:47:24 +02:00
|
|
|
</div>
|
|
|
|
</x-layout>
|