Skip to content
Advertisement

Laravel Eloquent – Get many-relationship of many-relationship

Assume the following structure:

A user has many projects. A project has many tasks.

Goal: I want to get all tasks of a certain $user. What is the most elegant way to achieve this?

What I am currently using is a big, non intuitive function chain that returns a collection instead of a collection builder instance:

JavaScript

This is what the relationships look like:

JavaScript

Advertisement

Answer

Has Many Through relationship is a bit complicated to understand a provide shortcut way to access data of another mode relation.
In your User model make relationship like this way :

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement