2020-08-29 12:05:32 +02:00
|
|
|
@extends('layout.default')
|
|
|
|
|
|
|
|
@section('content')
|
2020-08-31 20:32:50 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<div class="alert alert-dark py-1">
|
|
|
|
<h4>{{ $__t('Error source') }}</h4>
|
|
|
|
<pre class="my-0"><code>{!! $exception->getFile() !!}:{!! $exception->getLine() !!}</code></pre>
|
|
|
|
</div>
|
|
|
|
<div class="alert alert-dark py-1">
|
|
|
|
<h4>{{ $__t('Error message') }}</h4>
|
|
|
|
<pre class="my-0"><code>{!! $exception->getMessage() !!}</code></pre>
|
|
|
|
</div>
|
|
|
|
<div class="alert alert-dark py-1">
|
|
|
|
<h4>{{ $__t('Stack trace') }}</h4>
|
|
|
|
<pre class="my-0"><code>{!! $exception->getTraceAsString() !!}</code></pre>
|
2020-08-29 16:41:27 +02:00
|
|
|
</div>
|
2020-11-15 15:12:15 +01:00
|
|
|
<div class="alert alert-dark py-1">
|
|
|
|
<h4>{{ $__t('Easy error info copy & paste (for reporting)') }}</h4>
|
|
|
|
<textarea class="form-control easy-link-copy-textbox text-monospace mt-1"
|
|
|
|
rows="20">
|
|
|
|
Error source:
|
|
|
|
```
|
|
|
|
{!! $exception->getFile() !!}:{!! $exception->getLine() !!}
|
|
|
|
```
|
|
|
|
|
|
|
|
Error message:
|
|
|
|
```
|
|
|
|
{!! $exception->getMessage() !!}
|
|
|
|
```
|
|
|
|
|
|
|
|
Stack trace:
|
|
|
|
```
|
|
|
|
{!! $exception->getTraceAsString() !!}
|
2021-09-20 20:16:41 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
System info:
|
|
|
|
```
|
2023-05-24 20:32:48 +02:00
|
|
|
{!! json_encode($systemInfo, JSON_PRETTY_PRINT) !!}
|
2020-11-15 15:12:15 +01:00
|
|
|
```
|
|
|
|
</textarea>
|
|
|
|
</div>
|
2020-08-29 16:41:27 +02:00
|
|
|
</div>
|
2020-08-31 20:32:50 +02:00
|
|
|
</div>
|
2020-08-29 12:05:32 +02:00
|
|
|
@stop
|