Remove label from Structure Data

I have a blueprint with the restaurant menu on the page.

When I want to output the data, the label appears in front of each field.
Is there any way to remove it?

<?php
$menus = $page->children()->listed();
?>


<?php foreach ($menus as $menu): ?>
  <?= $menu->image() ?>
  <?= $menu->dish()->description()->kirbytext()  ?>
<?php endforeach ?>

Output:
dish: Schottisches Label Rouge Lachssteak mit
description: ‘Kräuterbutter,Kartoffelgratin und schönem Salatteller**’

You have to convert your structure field to a structure collection first, then loop through the items, calling the individual fields, see the docs for the structure field

Thx a lot :slight_smile: