@extends('layouts.public') @section('content') @php /** * Shown when a scanned table QR can't take orders right now: the token is * unknown, the restaurant isn't approved, or QR ordering is switched off for it. * Rendered through the public layout (HTTP 404) so the diner keeps full chrome. * * @var string|null $restaurantName */ $restaurantName = $restaurantName ?? null; @endphp
@if ($restaurantName !== null) {!! t_raw('table_closed.unavailable_at', [':name' => '' . e($restaurantName) . '']) !!} @else {{ t_raw('table_closed.not_found') }} @endif {{ t_raw('table_closed.help_suffix') }}