Last active
December 20, 2015 00:09
-
-
Save mateusgf/6039205 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
<?php | |
class Questions_Controller extends Base_Controller { | |
public $restful = true; | |
public function get_index() { | |
return View::make('questions.index') | |
->with('title', 'Make It Snappy Q&A - Home') | |
->with('questions', Question::unsolved()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment