@extends('admin.layout.master') @section('content')

Crons Executions

@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }} ×

@endif @endforeach
@foreach ($CronExecutionData as $c) @endforeach
No. Cron Name Execution Time
{{ $loop->index+1}} {{ $c->cron_name }} {{ date('n/d/Y g:i A',strtotime($c->execution_time)) }}
@endsection