@extends ('backend.layouts.app') @section('title', 'Error Logs') @section('page-header')

{{ 'Logs View' }}

@endsection @section('content')

Error Logs View

@forelse ($logs as $line) @php $class = ''; if (str_contains($line, 'ERROR')) { $class = 'error'; } elseif (str_contains($line, 'WARNING')) { $class = 'warning'; } elseif (str_contains($line, 'INFO')) { $class = 'info'; } @endphp
{{ $line }}
@empty

No logs available.

@endforelse
@endsection