{% for hotel in hotels %}
<div class="col-lg-4 col-md-4 col-xl-4 col-sm-6 col-12" id="hotel-{{ hotel.id }}">
<a title="{{ hotel.name }}" href="{{ path('hotels.show', {'id': hotel.id, 'slug': hotel.slug}) }}" class="trending-tour-item">
{% if hotel.filename %}
<img class="trending-tour-item__thumnail" src="{{ vich_uploader_asset(hotel, 'imageFile') | imagine_filter('thumbnail_card') }}" alt="{{ hotel.name }}">
{% else %}
<img class="trending-tour-item__thumnail" src="{{ asset('assetics/internes/images/empty.jpg') }}" alt="{{ hotel.name }}">
{% endif %}
<div class="trending-tour-item__info">
<h5 class="trending-tour-item__name">
{{ hotel.name|u.truncate(20, '...') }}
</h5>
<div class="trending-tour-item__group-infor">
<div class="trending-tour-item__group-infor--left">
{% for i in 1..hotel.standing %}
<i class="fa fa-star text-warning"></i>
{% endfor %}
{% if minPrice[hotel.id] is defined and minPrice[hotel.id] is not null %}
<small class="pull-right">A partir de {{ minPrice[hotel.id]|devise }}</small>
{% endif %}
<div class="trending-tour-item__group-infor__lasting">
<i class="fa fa-map-marker"></i> {{ hotel.cities }} |
<i class="fa fa-chart-pie"></i> {{ hotel.superficie }}
</div>
</div>
</div>
</div>
</a>
</div>
{% endfor %}