@extends('layouts.main') @section('content')

Activity Logs

@if($cronlogs)

{{$cronlogs}}

@else

No recent activity from cronjobs

Are cronjobs running? Check the docs for it here

@endif
Activity Logs
@csrf
@foreach($logs as $log) @endforeach
Causer Description Created At
{{$log->causer ? json_decode($log->causer)->name : 'system'}} @switch($log->description) @case('created') @break @case('deleted') @break @case('updated') @break @endswitch {{ucfirst($log->description)}} {{ explode("\\" , $log->subject_type)[2]}} {{$log->created_at->diffForHumans()}}
{!! $logs->links() !!}
@endsection