Level Input Item

Display a fixed set of labeled choices which represent values on a spectrum (eg. from very bad to very good). The default choices are the six common German school grades. You can provide choices as PHP array

'choices', // inheritable

Welche Schulnote hatten sie in Mathematik in der dritten Klasse?

{{--
    $choices = json_decode([
        {
            "label": "ungenĂ¼gend",
            "value": "6"
        },
        {
            "label": "mangelhaft",
            "value": "5"
        },
        {
            "label": "ausreichend",
            "value": "4"
        },
        {
            "label": "befriedigend",
            "value": "3"
        },
        {
            "label": "gut",
            "value": "2
        },
        {
            "label": "sehr gut",
            "value": "1
        }
    ], TRUE);
--}}

<x-levelInputItem name="xp-stock-trading" :$choices>
    <p>elche Schulnote hatten sie in Mathematik in der dritten Klasse?</p>
</x-levelInputItem>