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

{{ __('Settings') }}

{{ __('Cron jobs') }}
@include('shared.message')
0 6 * * 0
{{ __('Copy') }}
1 0 * * *
{{ __('Copy') }}
0 0 * * *
{{ __('Copy') }}
1 0 1 * *
{{ __('Copy') }}
{{ __('History') }}
@if(count($cronjobs) == 0) {{ __('No results found.') }} @else
{{ __('Name') }}
{{ __('Date') }}
@foreach($cronjobs as $cronjob)
@if($cronjob->name == 'cache')
{{ $cronjob->name }}
@elseif($cronjob->name == 'check')
{{ $cronjob->name }}
@elseif($cronjob->name == 'email')
{{ $cronjob->name }}
@elseif($cronjob->name == 'clean')
{{ $cronjob->name }}
@endif
{{ $cronjob->created_at->tz(Auth::user()->timezone ?? config('app.timezone'))->format(__('Y-m-d')) }} {{ $cronjob->created_at->tz(Auth::user()->timezone ?? config('app.timezone'))->format('H:i:s') }}
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $cronjobs->firstItem(), 'to' => $cronjobs->lastItem(), 'total' => $cronjobs->total()]) }}
{{ $cronjobs->onEachSide(1)->links() }}
@endif