@extends('layouts.app') @section('site_title', formatTitle([__('Cron job'), __('Settings'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Settings')], ]])

{{ __('Cron job') }}

{{ __('Cron job') }}
@include('shared.message')
{{ __('Cron job automates background processes by running scheduled tasks at regular intervals.') }}
@if(config('settings.cronjob_executed_at'))
{{ __('Last cron job command executed at :date.', ['date' => Carbon\Carbon::createFromTimestamp(config('settings.cronjob_executed_at'))->tz(Auth::user()->timezone ?? config('settings.timezone'))->format(__('Y-m-d') . ' H:i:s')]) }}
@else
{{ __('Configure your server to run the cron job.') }}
@endif
* * * * *
{{ __('The cron job command must be set to run every minute.') }}
@endsection @include('shared.sidebars.admin')