feat: import backups

This commit is contained in:
Andras Bacsai
2024-01-10 15:42:54 +01:00
parent 6bb45430c9
commit 6b24001876
5 changed files with 81 additions and 52 deletions

View File

@@ -8,7 +8,6 @@
<div class="flex flex-wrap gap-2">
@forelse($resource->scheduled_tasks as $task)
<a class="flex flex-col box"
@if ($resource->type() == 'application')
href="{{ route('project.application.scheduled-tasks', [...$parameters, 'task_uuid' => $task->uuid]) }}">
@elseif ($resource->type() == 'service')
@@ -19,7 +18,7 @@
<div>Last run: {{ data_get($task->latest_log, 'status', 'No runs yet') }}</div>
</a>
@empty
<div>No scheduled tasks configured.</div>
<div class="text-neutral-500">No scheduled tasks configured.</div>
@endforelse
</div>
</div>