@php /** * 404 — Page not found. Standalone (no DB-dependent layout) so it * renders reliably for any broken link. On-brand chrome via error.css. */ $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.404_title') !!} - {!! $siteName !!} @if (is_rtl()) @endif
{!! $siteName !!}

Error 404

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

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

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