26 lines
622 B
PHP
26 lines
622 B
PHP
<?php
|
|
|
|
use Livewire\Attributes\Layout;
|
|
use Livewire\Volt\Component;
|
|
|
|
new #[Layout('components.layouts.public')] class extends Component
|
|
{
|
|
//
|
|
}; ?>
|
|
|
|
<div class="max-w-2xl mx-auto py-16 px-4 text-center">
|
|
<flux:icon name="check-circle" class="w-16 h-16 mx-auto text-green-500 mb-6" />
|
|
|
|
<flux:heading size="xl" class="mb-4 text-body">
|
|
{{ __('booking.success_title') }}
|
|
</flux:heading>
|
|
|
|
<p class="text-zinc-600 dark:text-zinc-400 mb-6">
|
|
{{ __('booking.success_message') }}
|
|
</p>
|
|
|
|
<flux:button href="{{ route('home') }}">
|
|
{{ __('navigation.home') }}
|
|
</flux:button>
|
|
</div>
|