{% extends 'default_frame.twig' %}{% block main %}{# ブランド[カテゴリID:34]の子カテゴリ一覧を表示 #}{% set parentId = 34 %}{% set ParentCategory = repository('Eccube\\Entity\\Category').find(parentId) %}{% set childCategories = ParentCategory.children|sort((a, b) => a.sortNo <=> b.sortNo) %}Brandブランドから探す<ul> {% for childCategory in childCategories %} <li> <a href="{{ url('product_list') }}?brand_id={{ childCategory.id }}"> {{ childCategory.name }} </a> </li> {% endfor %}</ul>{% endblock %}