Ejemplo n.º 1
0
 /**
  * Show all talks.
  *
  * @return mixed The response.
  */
 public function showTalks()
 {
     try {
         $talks = TalkService::getTalks();
         return View::make('talks.list', compact('talks'));
     } catch (Exception $e) {
         return $this->unexpected($e);
     }
 }