Scheduled Tasks

@if ($resource->type() == 'application') @elseif ($resource->type() == 'service') @endif
@forelse($resource->scheduled_tasks as $task) @if ($resource->type() == 'application') {{ $task->name }} @if ($task->container) ({{ $task->container }}) @endif Frequency: {{ $task->frequency }} Last run: {{ data_get($task->latest_log, 'status', 'No runs yet') }} @elseif ($resource->type() == 'service') {{ $task->name }} @if ($task->container) ({{ $task->container }}) @endif Frequency: {{ $task->frequency }} Last run: {{ data_get($task->latest_log, 'status', 'No runs yet') }} @endif @empty
No scheduled tasks configured.
@endforelse