@extends('layouts.layout-2') @section('content')
| Datum | Aktion | Level | Model | Model ID | Nachricht |
|---|---|---|---|---|---|
| {{ $log->created_at->format('d.m.Y H:i:s') }} | {{ $log->action }} | {{ ucfirst($log->getLevelType()) }} | {{ $log->model ?: '-' }} | @if($log->model_id) {{ $log->model_id }} @else - @endif | {{ Str::limit($log->message, 100) }} @if(strlen($log->message) > 100) @endif |
| Keine Logs gefunden | |||||
| Aktion | Level | Anzahl |
|---|---|---|
| {{ $stat->action }} | {{ $stat->level == 2 ? 'Info' : ($stat->level == 5 ? 'Error' : 'Notice') }} | {{ $stat->count }} |