app/template/bravers/Block/review_detail_block.twig line 1

Open in your IDE?
  1. <div class="topBlocks detailBlock">
  2.     <div class="titleBlock no-space">
  3.         <div class="titleBlock__name">
  4.             <img class="titleBlock__name__icon" src="{{ asset('assets/img/top/review.svg') }}" alt="REVIEW" width="32" height="32" loading="lazy">
  5.             <h2 class="titleBlock__name__title">この商品のレビュー</h2>
  6.         </div>
  7.         <a class="titleBlock__review" href="{{ url('product_review_index', { id: Product.id }) }}">投稿する</a>
  8.     </div>
  9.     {% if ProductReviews is defined %}
  10.         <ul class="reply">
  11.             {% for ProductReview in ProductReviews %}
  12.                 <li class="reply__list">
  13.                     <div class="reply__list__content">
  14.                         <p class="reply__list__date">
  15.                             {{ProductReview.create_date|date_day}}
  16.                         </p>
  17.                         <p class="reply__list__title">
  18.                             {{ProductReview.Product.name}}
  19.                         </p>
  20.                         <p class="reply__list__detail">
  21.                             {{ ProductReview.comment|raw|nl2br }}
  22.                         </p>
  23.                     </div>
  24.                 </li>
  25.             {% endfor %}
  26.         </ul>
  27.         {% if ProductReviews|length > 3 %}
  28.             <a href="{{ url('product_review') }}?product_id={{ Product.id }}" class="more-btn reply__btn">
  29.                 <span class="more-btn__text">すべて見る</span>
  30.                 <img class="arrow" src="{{ asset('assets/img/common/arrow-black.svg') }}" alt="詳しく見る" width="7.91" height="12.36" loading="lazy">
  31.             </a>
  32.         {% endif %}
  33.     {% endif %}
  34. </div>