@extends('backend.layouts.app') @section('title') {{ 'View Log | '.env('APP_NAME') }} @endsection @section('breadcrumbs') @include('backend.layouts.partials.breadcrumbs',['current' => 'View Log '.'['. $log->date.']']) @endsection @push('after-css') @endpush @section('content')
@forelse($entries as $key => $entry) @if ($entry->hasStack()) @endif @empty @endforelse
ENV Level Time Header Actions
{{ $entry->env }} {!! $entry->level() !!} {{ $entry->datetime->format('H:i:s') }}

{{ $entry->header }}

@if ($entry->hasStack()) @endif
{!! $entry->stack() !!}
{{ trans('log-viewer::general.empty-logs') }}
@if ($entries->hasPages()) @endif
Back
@endsection @section('modals') {{-- DELETE MODAL --}}
@endsection @section('scripts') @endsection