@extends('layouts.user_type.auth') @section('cronLog')
@include('components.alert')

Cron Logs

@forelse ($logs as $index => $log) @empty @endforelse
No Cron Name Tenant Status Message Execution Time (s) Triggered By Executed At

{{ $logs->firstItem() + $index }}

{{ $log->cron_name }}

{{ $log->tenant_id ? 'Tenant ID: ' . $log->tenant_id : 'System-wide' }}

{{ ucfirst($log->status) }}

{{ \Illuminate\Support\Str::limit($log->message, 50) }}

{{ $log->execution_time }}

{{ ucfirst($log->triggered_by) }}

{{ \Carbon\Carbon::parse($log->created_at)->format('d-m-Y | H:i:s') }}

No Data Found

No data Found

@include('components.pagination', ['paginator' => $logs])
@endsection