@php /** * Local debug error view - only used in local environment. * Displays exception message and stack trace to aid debugging. */ @endphp
This debug page appears because the application caught an exception while handling your request. This page is only shown in the local environment.
{{ get_class($exception) }}: {{ $exception->getMessage() }}
{{ $exception->getTraceAsString() }}
@if(isset($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.