vote up 0 vote down star

I'm building a fantasy betting site for myself and a few friends to use.

At the moment I have an options(teams) HABTM events(matches) relationship setup.

I'm trying to add two seperate options per event plus the gambling odds for each option for the specific event, so different events may have different odds for a certain option.

echo $form->input('Option.0', array('type'=>'select', 'options'=>$options));
echo $form->input('Option.1', array('type'=>'select', 'options'=>$options));

That works to add multiple options per event, however how can I add odds to each of these options in the HABTM table?

Thanks

flag

1 Answer

vote up 1 vote down

You can specify the join model as the model in your form, e.g. OptionsMatch, and save against that model. Cake will automatically modelise the join table, so you don't even need a physical model for it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.