@extends('logs.base') @section('page_content')

Log File: {{$log->getFilename()}}

{{$log->getDate()->format('Y-m-d H:i:s')}}
@foreach($log->getLogs() as $line)
{{$line->getDate()->format('Y-m-d H:i:s.u')}} - {{$line->getSeverity()}}
{{$line->getChannel()}}.{{$line->getSeverity()}}
{{$line->getMessage()}}
@if ($line->hasStack())
@foreach ($line->getStack() as $stack)
{{$stack}}
@endforeach
@endif
@if ($line->hasContext())
{{$line->getContext()}}
{{$line->getExtra()}}
@endif
@endforeach
@endsection @push('page_styles') @endpush @push('page_scripts') @endpush