@php // Get timezone $settings = get_batch_settings(['system.timezone']); $timezone = $settings['system.timezone'] ?? config('app.timezone'); @endphp
{{ t('cron_not_running') }}
{{ t('last_checked_at') }}: {{ $last_cron_run }} ({{ $last_cron_run_datetime }})
{{ t('please_check_cron_setup') }}
{{ t('cronjob_running') }}
{{ t('last_checked_at') }}: {{ $last_cron_run }}
{{ t('Datetime') }}: {{ format_date_time($last_cron_run_datetime) }} ({{ t('Timezone') }}: {{ $timezone }})
{{ t('Execution duration') }}: @php if ($executionTime > 0) { if ($executionTime > 3600) { echo '< 60 ' . t('minutes'); } elseif ($executionTime >= 120) { $minutes = floor($executionTime / 60); $seconds = $executionTime % 60; echo $minutes . ' ' . t('mins') . ' ' . $seconds . ' ' . t('seconds'); } else { echo $executionTime . ' ' . t('seconds'); } } else { echo t('not_available'); } @endphp
{{ t('Current Status') }}: @if ($status == 'completed') {{ t('completed') }} @elseif($status == 'running') {{ t('running') }} @elseif($status == 'failed') {{ t('failed') }} @else {{ t('unknown') }} @endif
{{ t('link_description') }} {{ t('documentation') }}.