/**
  * Updates the configuration
  *
  * @return Response
  */
 public function update()
 {
     Configuration::updateConfiguration();
     // redirect
     Session::flash('success', 'Your configuration has been successfully updated.');
     return Redirect::to('configuration');
 }