27 lines
630 B
PHP
27 lines
630 B
PHP
|
|
@extends('layouts.app')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<h1>Logs</h1>
|
||
|
|
|
||
|
|
<table>
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th>ID</th>
|
||
|
|
<th>Level</th>
|
||
|
|
<th>Message</th>
|
||
|
|
<th>Created At</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
@foreach($logs as $log)
|
||
|
|
<tr>
|
||
|
|
<td>{{ $log->id }}</td>
|
||
|
|
<td>{{ ucfirst($log->level->value) }}</td>
|
||
|
|
<td>{{ $log->message }}</td>
|
||
|
|
<td>{{ $log->created_at->format('Y-m-d H:i') }}</td>
|
||
|
|
</tr>
|
||
|
|
@endforeach
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
@endsection
|