@php /** * Local debug error view - only used in local environment. * Displays exception message and stack trace to aid debugging. */ @endphp Debug Error

Debug Error

This debug page appears because the application caught an exception while handling your request. This page is only shown in the local environment.

Exception

{{ get_class($exception) }}: {{ $exception->getMessage() }}

Stack trace

{{ $exception->getTraceAsString() }}
@if(isset($input))

Request input

{{ json_encode($input, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES) }}
@endif

Tip: remove or disable this view in production. Use logs and local debugging where possible.