Ejemplo n.º 1
0
 public function index()
 {
     $groups = ForumGroup::all();
     $categories = ForumCategory::all();
     return View::make('forum.index')->with('groups', $groups)->with('categories', $categories);
 }