1 2 3 4 5 6 7
class Blog::CategoriesController < BlogController def show @category = BlogCategory.find(params[:id]) end end