staudenmeir / eloquent-has-many-deep

Laravel Eloquent HasManyThrough relationships with unlimited levels
MIT License
2.67k stars 157 forks source link

How to invert hasManyDeep relation #108

Closed gregorip02 closed 3 years ago

gregorip02 commented 3 years ago

Based on your README.md file, how to transform this.

Country → has many → User → has many → Post → has many → Comment

to:

Comment → belongs to → User → belongs to → Country

and represent this on Comment model like:

<?php

// App/Models/Comment.php

public function country()
{
  //
}
gregorip02 commented 3 years ago

I fixed this with hasOneDeepFromRelations Thanks for your work 👏👏