1
Personal I have 2 classes, a call Venda
and another ItensVenda
. I need to create a relationship to:
when I open a sale can see all the items of this sale.
when I access an item of a sale I can see the Sale data.
How I Create These Relationships in the Doctrine?
Class Venda
: id
, nome
, data
Class ItensVenda
: id
, nome
, valor
Thank you.
managed to create the relationship?
– LeoCBS