<div class="single-property-in-map show-card">
    <div class="items-map" style="display: none" data-flag="true" data-coor="{{ $hostel->lat }},{{ $hostel->lng }}">
        @include('frontend3.item_need_more', ['item'=>$hostel])
    </div>
    @if($hostel instanceof \App\Models\Hostel)
        <div class="property-room-in-map cs-pt active " style="border: white 2px solid"><span class="room-data"
                                                                                              data-coor2="{{ $hostel->lat }},{{ $hostel->lng }}">{{ $hostel->price_text }}<br>{{ $hostel->number_peoples }} @if($hostel->gender != 'Khác') {{ $hostel->gender }} @else
                    bạn @endif</span></div>
    @else
        @if(!empty($hostel->price))
            <div class="property-room-in-map cs-pt active " style="border: white 2px solid"><span class="room-data"
                                                                                                  data-coor2="{{ $hostel->lat }},{{ $hostel->lng }}">
            {{ number_format($hostel->price, 0, '.', '.') }}<br>{{ $hostel->number_peoples }} @if($hostel->gender != 'Khác') {{ $hostel->gender }} @else
                        bạn @endif</span></div>

        @else
            <div class="property-room-in-map cs-pt active " style="border: white 2px solid"><span class="room-data"
                                                                                                  data-coor2="{{ $hostel->lat }},{{ $hostel->lng }}">Thỏa thuận<br>{{ $hostel->number_peoples }} @if($hostel->gender != 'Khác') {{ $hostel->gender }} @else
                        bạn @endif</span></div>
        @endif
    @endif

</div>

