Why hasMany Relation still working even i removed

2019-09-05 15:15发布

enter image description here

enter image description here In the above both models i commented the method itemDestribution() but still it is working

1条回答
Anthone
2楼-- · 2019-09-05 16:01

This relation displays a Data because of following reasons.

  1. In your ItemDestributionModel, You have set relation with UserModel and ItemModel both.

  2. In your ItemModel and UserModel you haven't declare any public function and add Relation Class.

When you call UserModel it will find hasMany Relationship in ItemDestributionModel and user() function is available with belongsTo relationship.

That's why laravel fetch data without declaring public function. But you should declare relationship inside public function. :)

查看更多
登录 后发表回答