Exemplo n.º 1
0
 /**
  * Affiche la page de la shoutbox
  *
  *
  * @access public
  * @return view::make shout.index
  */
 public function index()
 {
     $shouts = Shout::orderBy('created_at', 'DESC')->take(10)->get()->reverse();
     return View::make('shout.index', array('shouts' => $shouts));
 }