Commerce orderからすべての商品名を取得する方法

カテゴリ コンテンツの管理 コアバージョン 8.6.x 関連モジュール Commerce
$product_names = [];
foreach ($order->getItems() as $item) {
  $product_names[] = $item->getTitle();
}

OTHER FAQ