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