/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { Grupos::destroy($id); return Redirect::action('GruposController@index')->with('message', 'Grupo eliminado'); }