@if($cronJobs->count())
@foreach($cronJobs as $cron) @endforeach
{{ _t('settings.Sl_no') }} {{ _t('settings.minute') }} {{ _t('settings.hour') }} {{ _t('settings.day') }} {{ _t('settings.month') }} {{ _t('settings.weekday') }} {{ _t('settings.task/url') }} {{ _t('settings.status') }} {{ _t('settings.actions') }}
{{ $loop->iteration }} {{ $cron->minute }} {{ $cron->hour }} {{ $cron->day }} {{ $cron->month }} {{ $cron->weekday }} @if($cron->task) {{ \App\Blueprint\Services\CronServices::getJobBySlug($cron->task)['name'] }} @elseif($cron->url) {{ $cron->url }} @endif @if($cron->status == 1) {{ _t('settings.enable') }} @else {{ _t('settings.disable') }} @endif
@else {{ _t('settings.no_cron_jobs') }} @endif