No route matches {:controller=>"users/cms", :action=>"neighbourhood_attractions_destroy"} - <%= link_to 'Destroy', cms_neighbourhood_attractions_delete_path, method: :delete, data: { confirm: 'Are you sure?' } %> ------------------------------- routes.rb: delete "admin/neighbourhood_attractions/delete/:id" => "users/cms#neighbourhood_attractions_destroy", :as => :cms_neighbourhood_attractions_delete ---------------------------------- users/cms_controller.rb: def neighbourhood_attractions_destroy NeighbourhoodAttraction.destroy(params[:id]) redirect_to :action => "neighbourhood_attractions_index", notice: 'Neighbourhood attraction was successfully deleted.' end