@extends(BaseHelper::getAdminMasterLayoutTemplate()) @section('content') {{-- Status Alert --}} @if (!$lastRunAt) {{ trans('core/setting::cronjob.is_not_ready_description') }} @elseif(Carbon\Carbon::now()->diffInMinutes($lastRunAt) <= 10) {!! BaseHelper::clean( trans('core/setting::cronjob.last_checked', [ 'time' => "{$lastRunAt->diffForHumans()}", ]), ) !!} @else {{ trans('core/setting::cronjob.is_not_working_description') }} @endif {{-- What is Cronjob --}} {{ trans('core/setting::cronjob.what_is.title') }}

{{ trans('core/setting::cronjob.what_is.description') }}

{{ trans('core/setting::cronjob.what_is.examples') }}: {{ trans('core/setting::cronjob.what_is.features') }}
{{-- Command to Copy --}} {{ trans('core/setting::cronjob.command.title') }}

{{ trans('core/setting::cronjob.command.description') }}

{{-- Setup Instructions --}} {{ trans('core/setting::cronjob.setup.name') }}

{{ trans('core/setting::cronjob.setup.choose_hosting') }}

{{-- Tabs for different hosting types --}}
{{-- cPanel Instructions --}}
@foreach (['step1', 'step2', 'step3', 'step4', 'step5'] as $index => $step)
{{ $index + 1 }}
{!! BaseHelper::clean(trans("core/setting::cronjob.cpanel.{$step}")) !!}
@endforeach
{{-- Plesk Instructions --}}
@foreach (['step1', 'step2', 'step3', 'step4', 'step5'] as $index => $step)
{{ $index + 1 }}
{!! BaseHelper::clean(trans("core/setting::cronjob.plesk.{$step}")) !!}
@endforeach
{{-- DirectAdmin Instructions --}}
@foreach (['step1', 'step2', 'step3', 'step4', 'step5'] as $index => $step)
{{ $index + 1 }}
{!! BaseHelper::clean(trans("core/setting::cronjob.directadmin.{$step}")) !!}
@endforeach
{{-- SSH Instructions --}}
@foreach (['step1', 'step2', 'step3', 'step4', 'step5'] as $index => $step)
{{ $index + 1 }}
{!! BaseHelper::clean(trans("core/setting::cronjob.ssh.{$step}")) !!}
@endforeach
{{-- Help section --}}

{!! BaseHelper::clean(trans('core/setting::cronjob.need_help')) !!}

@stop