@extends('theme.theme_main') @section('breadcrumb') {!! Breadcrumbs::render('cron') !!} @stop @section('content_title')

Cron List

@stop @section('content')

Filter


@if(isset($all_cron) && !empty($all_cron)) @foreach ($all_cron as $category => $sub_cron)

{{$category}}

@foreach ($sub_cron as $cron) @endforeach
Name Schedule Last Run Status Action
({{$cron['id']}}) {{$cron['name']}} {{$cron['schedule']}} {{$cron['last_run']}} @if($cron['status'] == 1) Enabled @else Disabled @endif
@endforeach @else
Name Schedule Last Run Status Action
- No Result -
@endif
@stop @section('script') @stop