/**
  * Show the application welcome screen to the user.
  *
  * @return Response
  */
 public function index()
 {
     //recuperando alguma informacao da tabela de configurações
     $title = ConfiguracaoController::get('title');
     return view('welcome')->with('name', $title);
 }