/**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store()
 {
     Opciones::create(Input::all());
     return Redirect::action('OpcionesController@index')->with('message', 'Opción guardada');
 }