app/template/user_data/brand.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% block main %}
  3. {# ブランド[カテゴリID:34]の子カテゴリ一覧を表示 #}
  4. {% set parentId = 34 %}
  5. {% set ParentCategory = repository('Eccube\\Entity\\Category').find(parentId) %}
  6. {% set childCategories = ParentCategory.children|sort((a, b) => a.sortNo <=> b.sortNo) %}
  7. Brand
  8. ブランドから探す
  9. <ul>
  10.     {% for childCategory in childCategories %}
  11.         <li>
  12.             <a href="{{ url('product_list') }}?brand_id={{ childCategory.id }}">
  13.                 {{ childCategory.name }}
  14.             </a>
  15.         </li>
  16.     {% endfor %}
  17. </ul>
  18. {% endblock %}