Hi,
how can i render multiple checkboxes from a model? Select is working, but not checkboxes.
I started with this:
$this->add(
new Check(
"country",
Users::find(),
[
"using" => [
"id",
"country",
],
"order" => "country",
"group" => "id"
]
)
);
And get this message:
Wrong number of parameters
Volt
{{ form.render("country") }}
Thx