Skip to content

Instantly share code, notes, and snippets.

@maxparm
Created June 15, 2011 20:50
Show Gist options
  • Select an option

  • Save maxparm/1028078 to your computer and use it in GitHub Desktop.

Select an option

Save maxparm/1028078 to your computer and use it in GitHub Desktop.
Index action
<h2>User List</h2>
<p><?=$this->html->link('Sign Up', 'User::signup')?></p>
<?php if($users->count()) { ?>
<ul>
<?php foreach($users as $user) { ?>
<li><?=$user->name?></li>
<?php } ?>
</ul>
<?php } ?>
public function index() {
$users = Users::all();
return compact('users');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment