I have implement relationController in the model that i build..
child model listed inside parent model form.. and it works perfectly but it doesnt meet my requirement..
the things is
the child model listed is only the one related to parent model id that is defined in the child model..
so child model record only belongsTo one parent model record, so when i create new record, the child model doesnt display any record..
i need all child model records display in all parent model records, so
even when we create new record, all the child model is also listed..
i tried to use belongsToMany relationship, but it does the same way as belongsTo relationship.
is there a way for this?