@extends (request()->ajax() ? 'core::layouts.master-ajax' : 'core::layouts.master') @section ('content')

{{ $title }}

@if(!request()->ajax())
Back
@endif
{{ $data->url }}

{{ date('d M Y H:i:s', strtotime($data->created_at)) }}

@if($data->is_reported) Reported at {{ date('d M Y H:i:s', strtotime($data->updated_at)) }} @else Not Reported Yet @endif
Exception Type : {{ $data->type }}

{{ strlen($data->description) > 0 ? $data->description : 'No description' }}

{{ $data->file_path }}
@if(!empty($stacktrace))
    @foreach($stacktrace as $row)
  • #{{ $loop->iteration }} {{ isset($row['file']) ? $row['file'] : '-'}}
    @if(isset($row['class'])) {{ $row['class'] }} @endif @if(isset($row['function'])) method {{ $row['function'] }} @endif @if(isset($row['line'])) Line {{ $row['line'] }} @endif
  • @endforeach
@else
No stacktrace
@endif
@stop