I have a table like this:
<table>
<?php foreach($var as $val): ?>
<tr>
<?php foreach($val as $row): ?>
<td> ... </td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</table>
How can I code this with mustache?
I have a table like this:
<table>
<?php foreach($var as $val): ?>
<tr>
<?php foreach($val as $row): ?>
<td> ... </td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</table>
How can I code this with mustache?
Copyright © 2021 Jogjafile Inc.
Assuming you're using the KOstache module,
Kostache::factory()
and assigning your multidimensional array in your controller. Then using an Implicit iterator to loop through all elements.