{% set Voices = CustomizeAreaVoice() %}
{% if Voices|length > 0 %}
<div class="c-section">
<h2 class="c-title-07"><span class="s-text"><span class="js-text-area"></span>での工事実績</span></h2>
<ul class="c-grid col4 p-top-voice__menu">
{% for Voice in Voices %}
<li class="c-img-zoom">
<a href="{{ url('voice-dtl', {'id': Voice.id}) }}" class="c-card-04">
<figure class="c-card-04__thum">
<!--<img src="{{ asset(Voice.voice_image|no_image_product, 'save_image') }}" alt="">-->
<img src="/html/upload/voice_image/{{ Voice.voice_image }}" alt="" style="width: 100%;">
</figure>
<p class="c-card-04__text"><span class="s-text">{{ Voice.guest_comment }}</span><span class="s-link">工事実績詳細へ</span></p>
</a>
</li>
{% endfor %}
</ul>
<div class="block-center">
<a href="{{ url('voice') }}" class="c-btn-01"><span class="s-text">工事実績一覧を見る</span>
<i class="s-icon">
<svg>
<use xlink:href="{{ asset('assets/img/ico/ico_arrow_forward.svg#obj') }}"></use>
</svg>
</i></a>
</div>
</div>
{% endif %}