{{-- Order confirmation. Reached only via a session flash of the placed order id (CheckoutController::confirmation) — not deep-linkable. $order is a Lunar\Models\Order with lines + shipping/billing addresses eager-loaded. --}} @extends('layouts.app') @section('title', __('checkout.page.confirmation_title') . ' — ' . config('app.name')) @section('content')
{{ __('checkout.page.confirmation_email_note') }}
{{-- Guests: logging in with the order's email attaches it to an account (boboko-core's Modules\Core\Customer\Listeners\ClaimGuestOrdersOnLogin), so it shows in their history. --}} @guest @if ($loginRoute = config('checkout.login_route')){{ __('checkout.page.confirmation_login_hint') }} {{ __('checkout.page.login_link') }}
@endif @endguest{{ $line->option }}
@endif @include('checkout::partials.line-custom-fields', ['line' => $line])