/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $infoPages = InfoPage::all();
     return View::make('lanager-core::infoPage.index')->with('title', 'Info')->with('infoPages', $infoPages);
 }