{{-- 500 — Server Error Shows a user-friendly message and a reference/correlation ID. Never shows a stack trace in production. --}} @extends('errors._layout', [ 'error_code' => 500, 'error_title' => 'Something Went Wrong in the Nova', 'error_message' => 'An unexpected error occurred. Our team has been notified and is on it.', ]) @section('badge', 'Server Error') @section('primary-cta') @endsection @section('secondary-ctas') Return Home Report Issue @endsection @section('recovery') @if(isset($correlationId))
Reference ID: {{ $correlationId }}
@endif @if(config('app.debug') && isset($exception))
Exception: {{ $exception->getMessage() }}
{{ $exception->getTraceAsString() }}
@endif @endsection