Hi,
I just started a project using Phalcon (wich I've never used before). I have a many to many relationship in my datas like this :
User : id, name
Game : id, date, score1, score2
UsersGames : id, user_id, game_id, team
Everything works fine with my models, but I dont know how to access UserGame.team. How do I do that ?
Thanks.