Created
July 26, 2013 14:41
-
-
Save mateusgf/6089376 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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