middleware('isAdmin'); } public function index() { $alerts = []; if (!ScheduleLogItem::scheduleRanInLast30Minutes()) { $alerts[] = [ 'id' => 'cronNotSetup', 'title' => 'There is an issue with CRON schedule', 'description' => 'The CRON schedule has not run in the last 30 minutes. If you did not set it up yet, see the documentation here.', ]; } return $this->success([ 'alerts' => $alerts, ]); } }