Skip to content

Instantly share code, notes, and snippets.

@mateusgf
Last active December 20, 2015 00:09
Show Gist options
  • Save mateusgf/6039205 to your computer and use it in GitHub Desktop.
Save mateusgf/6039205 to your computer and use it in GitHub Desktop.
<?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