Posts by Prinple Vrlo • 33 points
1 post
-
3
votes1
answer630
viewsQ: How to get hasMany relationship data
I have a table Grupo and a Topicos, where the group has many topics and this is my code: public function topicos() { return $this->hasMany('App\Topico'); } In my Controller is like this: public…