diff --git a/resources/views/livewire/project/database/backup-executions.blade.php b/resources/views/livewire/project/database/backup-executions.blade.php index c3fc01fb4..b1cc7fa66 100644 --- a/resources/views/livewire/project/database/backup-executions.blade.php +++ b/resources/views/livewire/project/database/backup-executions.blade.php @@ -4,33 +4,45 @@

Executions

Cleanup Failed Backups -
+
@forelse($executions as $execution) -
data_get($execution, 'status') === 'success', - 'border-red-500' => data_get($execution, 'status') === 'failed', +
data_get($execution, 'status') === 'success', + 'border-red-500' => data_get($execution, 'status') === 'failed', + 'border-yellow-500' => data_get($execution, 'status') === 'running', ])> @if (data_get($execution, 'status') === 'running')
@endif -
Database: {{ data_get($execution, 'database_name', 'N/A') }}
-
Status: {{ data_get($execution, 'status') }}
-
Started At: {{ $this->formatDateInServerTimezone(data_get($execution, 'created_at')) }}
- @if (data_get($execution, 'message')) -
Message: {{ data_get($execution, 'message') }}
- @endif -
Size: {{ data_get($execution, 'size') }} B / - {{ round((int) data_get($execution, 'size') / 1024, 2) }} - kB / {{ round((int) data_get($execution, 'size') / 1024 / 1024, 3) }} MB +
Status: {{ data_get($execution, 'status') }}
+
+ Started At: {{ $this->formatDateInServerTimezone(data_get($execution, 'created_at')) }}
-
Location: {{ data_get($execution, 'filename', 'N/A') }}
-
-
+
+ Database: {{ data_get($execution, 'database_name', 'N/A') }} +
+
+ Size: {{ data_get($execution, 'size') }} B / + {{ round((int) data_get($execution, 'size') / 1024, 2) }} kB / + {{ round((int) data_get($execution, 'size') / 1024 / 1024, 3) }} MB +
+
+ Location: {{ data_get($execution, 'filename', 'N/A') }} +
+ @if (data_get($execution, 'message')) +
+
{{ data_get($execution, 'message') }}
+
+ @endif +
@if (data_get($execution, 'status') === 'success') - Download @endif @@ -40,10 +52,9 @@ This will delete this backup. It is not reversible.
Please think again.
- - +
@empty -
No executions found.
+
No executions found.
@endforelse
@endisset - -
+
\ No newline at end of file diff --git a/resources/views/livewire/project/shared/scheduled-task/executions.blade.php b/resources/views/livewire/project/shared/scheduled-task/executions.blade.php index 58b53688d..a52713522 100644 --- a/resources/views/livewire/project/shared/scheduled-task/executions.blade.php +++ b/resources/views/livewire/project/shared/scheduled-task/executions.blade.php @@ -1,32 +1,36 @@ -
+