7 lines
138 B
PHP
Executable file
7 lines
138 B
PHP
Executable file
<ul>
|
|
<?php foreach($customers as $customer): ?>
|
|
<li><?php echo $customer['Customer']['name']; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
|