@php /** * 500 — Server error. Standalone (no DB/layout dependency) because the * failure that triggered this may be in the layout or database itself. * On-brand chrome via error.css; the "Try again" button is JS-enhanced. * * This is Laravel's conventional errors/500 view: the framework renders it * automatically for an uncaught 500 whenever APP_DEBUG is off, so — same as * the original — it has NO layout of its own and emits the full document. */ $siteName = e(setting('site_name', 'QuickMunch')); $logo = setting('logo', 'assets/admin/logo.png'); $favicon = setting('favicon', 'assets/admin/favicon.png'); $favExt = strtolower(pathinfo((string) $favicon, PATHINFO_EXTENSION)); $favType = $favExt === 'svg' ? 'image/svg+xml' : ($favExt === 'ico' ? 'image/x-icon' : 'image/png'); @endphp {!! t('error.500_title') !!} - {!! $siteName !!} @if (is_rtl()) @endif
{!! $siteName !!}

Error 500

{!! t('error.500_title') !!}

{!! t('error.500_text') !!}

{!! t_raw('error.help_500', [':link' => '' . t('error.help_center') . '']) !!}