ソーシャルキャスト
オウルキャスト
この関数について
全ての親カテゴリを取得します。
詳細仕様
get_categories()
引数
引数はありません
戻り値
カテゴリを含むコレクション(lluminate\Support\Collection)
使用例
全ての親カテゴリを取得し、表示名を出力する
{% for category in get_categories() %}
{{category.display_name}}
{% endfor %}
全ての親カテゴリとその子カテゴリを取得し、表示名を出力する
{% for category in get_categories() %}
{{category.display_name}}
{% for child in category.descendants %}
{{child.display_name}}
{% endfor %}
{% endfor %}
全ての親カテゴリとその子カテゴリを取得し、子カテゴリだけ表示名を出力する
{% for category in get_categories() %}
{% for child in category.descendants %}
{{child.display_name}}
{% endfor %}
{% endfor %}
対応バージョン
4.0.0 以降