Esempio n. 1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $rol = Rol::find($id);
     $rol->delete();
     $roles = Rol::paginate();
     $notices = array("Registro Eliminado");
     return \Redirect::route('admin.roles.index')->with('notices', $notices);
 }