11 lines
258 B
PHP
11 lines
258 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @var \App\View\AppView $this
|
||
|
|
* @var iterable<\Cake\Datasource\EntityInterface> $cities
|
||
|
|
*/
|
||
|
|
$this->setLayout('ajax');
|
||
|
|
?>
|
||
|
|
<?php foreach ($cities as $cityId => $city): ?>
|
||
|
|
<option value="<?= $cityId; ?>"><?= $city; ?></option>
|
||
|
|
<?php endforeach; ?>
|