@extends('user.layout_user.main') @section('title', 'Xác nhận & Thanh toán') @section('content')

Xác nhận & Thanh toán

@csrf
Thông tin khách hàng
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
Thông tin đặt phòng
  • Ngày nhận phòng: {{ $step1['checkin'] }}
  • Ngày trả phòng: {{ $step1['checkout'] }}
  • Phòng đã chọn:
    @foreach ($roomDetails as $index => $detail) {{ $detail['roomType']->name }} @if ($detail['quantity'] > 1) x {{ $detail['quantity'] }} @endif
    @endforeach
  • Dịch vụ đi kèm:
    @forelse($serviceModels as $service) {{ $service->name }} ({{ number_format($service->price, 0, ',', '.') }} VNĐ)
    @empty Không có dịch vụ @endforelse
  • Tổng tiền: {{ number_format($total, 0, ',', '.') }} VNĐ
Phương thức thanh toán
@error('payment_method')
{{ $message }}
@enderror
Quay lại
@endsection @section('css') @endsection