<div class="row">
    <div class="col-md-3">
        <p>Loại: @if($room->roomType) {{ $room->roomType->name }} @endif</p>
    </div>
    <div class="col-md-3">
        <p>Diện tích: {{ $room->size }}</p>
    </div>
    <div class="col-md-3">
        <p>Tầng: {{ $room->block_name }}</p>
    </div>
    <div class="col-md-3">
        <p>Đơn giá: {{ number_format($room->price, 0, '.', '.') }}</p>
    </div>
    <div class="col-md-3">
        <p>Số người phù hợp: {{ $room->max_renters }}</p>
    </div>
    <div class="col-md-3">
        <p>Số khách đang thuê: {{ \App\Models\RenterRoom::where('room_id', $room->id)->count() }}</p>
    </div>
    <div class="col-md-3">
        <p>Tình trạng: {{ $room->is_empty }}</p>
    </div>
    <div class="col-md-3">
        <p>Hình thức thuê: {{ $room->hostel->type_rent_text }}</p>
    </div>
    <div class="col-md-12">
        <label>Hình ảnh</label>
        <div class="row">
            @php
                $images = DB::table('room_images')->where('room_id', $room->id)->get(); @endphp

            @foreach($images as $image)
                <div class="col-sm-6 col-md-3">
                    <a data-toggle-2="lightbox" href="/files/{{ $image->image }}" data-gallery-2="{{ $room->id }}" class="thumbnail" style="background-image: url(/files/{{ $image->image }}); height: 300px; background-size: cover">

                    </a>
                    <select class="form-control" disabled>

                        <option @if($image->type == \App\Models\Room::IMAGE_LIVING_ROOM) selected @endif value="{{ \App\Models\Room::IMAGE_LIVING_ROOM }}">Ảnh phòng khách</option>
                        <option @if($image->type == \App\Models\Room::IMAGE_BED_ROOM) selected @endif value="{{ \App\Models\Room::IMAGE_BED_ROOM }}">Ảnh phòng ngủ</option>
                        <option @if($image->type == \App\Models\Room::IMAGE_KITCHEN) selected @endif value="{{ \App\Models\Room::IMAGE_KITCHEN }}">Ảnh nhà bếp</option>
                        <option @if($image->type == \App\Models\Room::IMAGE_OTHER) selected @endif value="{{ \App\Models\Room::IMAGE_OTHER }}">Vị trí khác</option>
                    </select>
                </div>

            @endforeach
        </div>
    </div>
</div>