how to implement many to many relationship between 3 tables?
I have candidatesskills and criterias table. Each candidate can have many skills and criterias, and candidate has score for each criteria. for example:
@davidbuchukuri If you need a pivot table between 3 tables - I recommend to not think about it as pivot table and make separated model instead (like CandidateSkillCriteria)
Because laravel do not support pivots between 3 tables and you'll not be able to eager load all related data