Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //Get all cities
  2. $cities = $this->Cities->find('list', [
  3. 'keyField' => 'id',
  4. 'valueField' => function ($cities) {
  5. return $cities->get('full_info');
  6. }
  7. ,'order' => ['name' => 'asc']])
  8. ->contain(['Users']);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement