I'm looking to create simple categories in my Rails app, with a lot of searching through the internet and finding tutorials which are too abstract I am now posting on here for some guidance/help.
What I currently have is a Posts scaffold which belongs to a User which works perfectly. I think I need to setup a many to many relationship between categories and posts which allows a post to belong to multiple categories - Also creating a link to the category which lists the posts that belong to it.
Posts can belong to multiple categories
How would I go about adding this to my project or creating something on the lines of this?
Thanks,
Jonathan