25 lines
1.1 KiB
PHP
25 lines
1.1 KiB
PHP
<div>
|
|
<div class="flex gap-2">
|
|
<h2 class="pb-4">Scheduled Tasks</h2>
|
|
<x-forms.button class="btn" onclick="newTask.showModal()">+ Add</x-forms.button>
|
|
<livewire:project.shared.scheduled-task.add />
|
|
</div>
|
|
|
|
<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')
|
|
href="{{ route('project.service.scheduled-tasks', [...$parameters, 'task_uuid' => $task->uuid]) }}">
|
|
@endif
|
|
<div><span class="font-bold text-warning">{{ $task->name }}<span></div>
|
|
<div>Frequency: {{ $task->frequency }}</div>
|
|
<div>Last run: {{ data_get($task->latest_log, 'status', 'No runs yet') }}</div>
|
|
</a>
|
|
@empty
|
|
<div class="text-neutral-500">No scheduled tasks configured.</div>
|
|
@endforelse
|
|
</div>
|
|
</div>
|