Posts by marcus • 16 points
1 post
-
0
votes1
answer552
viewsA: Relationship between various tables in Eloquent
in the product model public function cores() { return $this->hasMany('Cormodel'); } //produto->cores me retorna todo as cores do produto in the color model public function produto() { return…