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

{{ trans('Cron Logs') }} Showing {{($result->currentPage()-1)* $result->perPage()+($result->total() ? 1:0)}} to {{($result->currentPage()-1)*$result->perPage()+count((array) $result)}} of {{$result->total()}} Results

@php $getUserRoleData = userRoleData(); $EPG = explode(",",$getUserRoleData->EPG); @endphp
@if (count((array) $errors) > 0) @if($errors->any()) @endif @endif
@if(in_array("View",$EPG))
@if(count((array) $result)>0) @foreach ($result as $key=>$uVal) @endforeach @else @endif
ID {{ trans('Status') }} {{ trans('Description') }} {{ trans('Started') }} {{ trans('Finished') }}
@if(!empty($uVal->id)){{ $uVal->id }} @endif @if(!empty($uVal->status && $uVal->status=="Failed")) In Process @elseif($uVal->status && $uVal->status=="Success") Success @endif @if(!empty($uVal->jobs_for)){{ $uVal->jobs_for }} @endif @if(!empty($uVal->created_at)){{ date('d-m-Y H:i:s', strtotime($uVal->created_at)) }} @endif @if(!empty($uVal->created_at)){{ date('d-m-Y H:i:s', strtotime($uVal->updated_at)) }} @endif
{{ trans('labels.NoRecordFound') }}
{{ $result->appends($_GET)->links() }}
@else

Please contact with SuperAdmin

@endif
@endsection