I currently have multiple "venue/places pages" where I have added an HTML div with labels to allow users to read & post messages/comments for the venue using messageList & messageCreate DB services.
However, I originally only set up one "messages" collection in the DB so naturally each venue page lists the same collected Messages from the List Service. To get this to work as needed, should I create separate "Messages" collections, one specific to each page? That way only messages pertaining to that Venue Page are listed? Like Venue1messages collection; Venue2messages collection.... and so on.Then create a single List/Create DB service unique to each page?
In my case I have 9 unique venue pages, and I want each user to be able post messages to each specific page uniquely.
Thanks for your help.