@if (count($hotel_listings)>0)
@foreach ($hotel_listings as $key => $hotel)
@if ($hotel->is_featured)
@endif
@if (count($hotel->reviews)>0)
{{ $hotel->directoryRatting($hotel->id) }}
@php
$rate = ceil($hotel->directoryRatting($hotel->id));
@endphp
@for($i=1; $i<=$rate; $i++)
@endfor
@for($i=1; $i<=(5-$rate); $i++)
@endfor
{{ count($hotel->reviews)}} @lang('Reviews')
@endif
{{ $hotel->real_address }}
{{ $hotel->phone_number }}
@endforeach
@endif