@extends('layouts.admin') @section('title', 'Cron Job Settings') @section('header', 'Cron Job Settings') @section('content')
One Click Installer
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
{{ $cronCommand }}
@if(!empty($settings['cron_installed_at']))
Last installed from panel: {{ $settings['cron_installed_at'] }}
@endif
@csrf
@unless($canInstallCron)
Automatic installation requires the PHP proc_open function. Enable it on the server, then reload this page.
@endunless
Scheduled Work
{{ count($scheduledTasks) }} tasks
@forelse($scheduledTasks as $task) @empty @endforelse
Task Type Frequency Command
{{ $task['name'] }} {{ $task['type'] }} {{ $task['frequency'] }} @if($task['expression'])
{{ $task['expression'] }}
@endif
{{ $task['command'] }}
No scheduled tasks found.
@endsection