2023-08-09 14:47:24 +00:00
|
|
|
<x-layout>
|
|
|
|
<h1>Backups</h1>
|
2023-08-11 18:19:42 +00:00
|
|
|
<livewire:project.database.heading :database="$database" />
|
2023-08-09 15:57:27 +00:00
|
|
|
<x-modal modalId="startDatabase">
|
|
|
|
<x-slot:modalBody>
|
2023-09-22 12:47:25 +00:00
|
|
|
<livewire:activity-monitor header="Database Startup Logs" />
|
2023-08-09 15:57:27 +00:00
|
|
|
</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 14:47:24 +00:00
|
|
|
<div class="pt-6">
|
2023-10-24 12:31:28 +00:00
|
|
|
<livewire:project.database.backup-edit :backup="$backup" :s3s="$s3s" :status="data_get($database, 'status')" />
|
2023-08-10 13:52:54 +00:00
|
|
|
<h3 class="py-4">Executions</h3>
|
2023-08-11 18:19:42 +00:00
|
|
|
<livewire:project.database.backup-executions :backup="$backup" :executions="$executions" />
|
2023-08-09 14:47:24 +00:00
|
|
|
</div>
|
|
|
|
</x-layout>
|