@php use Illuminate\Support\Facades\DB; @endphp @extends('user.layout_user.main') @section('content')

Đặt phòng khách sạn

@csrf
@error('room_type_id')
{{ $message }}
@enderror
@php // Lấy loại phòng đầu tiên hoặc theo slug nếu có $roomType = request('slug') ? $roomTypes->where('slug', request('slug'))->first() : ($dataRommTypes[0] ?? $roomTypes[0] ?? null); @endphp @if($roomType)
{{ $roomType->name }}

Giá: {{ number_format($roomType->price) }} VNĐ/đêm

Mô tả: {{ $roomType->overview }}

Chi tiết: {!! $roomType->description !!}

@else

Vui lòng chọn loại phòng để xem chi tiết.

@endif
@endsection @section('css') @endsection @section('js') @endsection