@if($exception->method)
method
{{ $exception->method }}
@endif @if($exception->path)
url
{{ $exception->path }}
@endif @if($exception->query)
query
{{ $exception->query}}
@endif @if($exception->body)
body
{{ $exception->body }}
@endif

time
{{ $exception->created_at }}
client ip
{{ $exception->ip }}
@foreach($headers as $name => $values)
{{ $name }}
@foreach($values as $value)
{{ $value }}
@endforeach @endforeach
@foreach($cookies as $name => $value)
{{ $name }}
{{ $value }}
@endforeach

Exception Trace

@if ($exception->code || $exception->message) @if ($exception->code) @endif @if ($exception->message) @endif
  Exception {{ $exception->type }}
  Code {{ $exception->code }}  Message {{ $exception->message }}
@endif @foreach($frames as $index => $frame)
     {{ str_replace(base_path() . '/', '', $frame->file()) }} in {{ $frame->method() }} at line {{ $frame->line() }}
{!! $frame->getCodeBlock()->output() !!}
@foreach($frame->args() as $name => $val) @endforeach
  {{ $name }} {{ $val }}
@endforeach