How to setup a single checkbox where the value and the text are dynamically taken from a db field?
I tried using a php99:
$options = [ ['value' => $this->data("datum_1"), 'text' => $this->data("datum_1")],
];return $options;
and the value set to {var:php99} but the checkbox has no valeu and no text attached although the debugger shows:
[php99] => Array ( [0] => Array ( [value] => 2025-07-23 [text] => 2025-07-23 ) )
.