JQHTML Template Compilation Error

{{ $exception->getFile() }}
@if($exception->getLine())
Line {{ $exception->getLine() }}@if(method_exists($exception, 'getColumn') && $exception->getColumn()), Column {{ $exception->getColumn() }}@endif
@endif

Error Message

{{ $exception->getMessage() }}
@if(method_exists($exception, 'getContext') && $exception->getContext())

Code Context

{{ $exception->getContext() }}
@endif @if(method_exists($exception, 'getSuggestion') && $exception->getSuggestion())

How to Fix

{{ $exception->getSuggestion() }}
@endif @if(app()->environment('local', 'development'))

Stack Trace

@foreach($exception->getTrace() as $index => $trace) @if($index < 10)
#{{ $index }} {{ $trace['file'] ?? 'unknown' }}:{{ $trace['line'] ?? '?' }} @if(isset($trace['class'])) {{ $trace['class'] }}{{ $trace['type'] ?? '::' }}{{ $trace['function'] }}() @elseif(isset($trace['function'])) {{ $trace['function'] }}() @endif
@endif @endforeach
@endif