I'm developing a site with Laravel 4.2. I have two tables: articles and tags.
This is my tags table:
id | article_ids | xxxx
2 | 2,41,23,6 | xxxx
I'm using Eloquent and I want to find an specific id in article_ids column. How can I do this?
Can I search in MySQL like this?
Thanks for helping. Sorry for my bad English.