@php $title = 'Мои брони — Hotel Pineta'; $heading = 'Мои брони'; $subheading = 'Личный список бронирований гостя'; @endphp @extends('layouts.guest') @section('i18n_page', 'guest_bookings') @section('content')
@if ($bookings->isEmpty())
Брони пока не найдены.
@else
@foreach ($bookings as $booking) @endforeach
Бронь Комната Заезд Ночей Статус Сумма
{{ $booking->booking_number }} № {{ $booking->room?->code }} — {{ $booking->room?->title }} {{ $booking->arrival_date?->format('d.m.Y') }} {{ $booking->nights }} {{ $statuses[$booking->status] ?? $booking->status }} {{ number_format((float) $booking->full_amount, 2, '.', ' ') }} €
{{ $bookings->links() }}
@endif
@endsection