Hello, I am trying to build a html table from database. I found difficilties passing some html and value as object to Volt. Maybe someone has anything to offer?
$users = User::find();
foreach ($users as $user) {
$this->view->name .= '<td>'.$user. '<\td>'->name;
}