Skip to content

Instantly share code, notes, and snippets.

@mateusgf
Created July 26, 2013 14:41
Show Gist options
  • Select an option

  • Save mateusgf/6089376 to your computer and use it in GitHub Desktop.

Select an option

Save mateusgf/6089376 to your computer and use it in GitHub Desktop.
// no nosso controller questions.php
public function get_index() {
return View::make('questions.index')
->with('title', 'Make It Snappy Q&A - Home')
->with('questions', Question::unsolved()); // pega as questions no banco de dados
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment