We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great to add a display of nested resources when browsing, for example:
In this regard, I propose to add a new method to the resource class responsible for this:
public function relations(): array { return [ Single('user', UserResource::class), Many('comments', CommentResource::class), ]; }
Where the first argument will be the name of the communication method in the model, that is:
class Post extends Model { // ... public function user() { return $this->belongsTo(User::class, 'author'); } public function comments() { return $this->hasMany(Comment::class); } }
And the second will be the name of the class in which you want to display the resulting models.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great to add a display of nested resources when browsing, for example:
In this regard, I propose to add a new method to the resource class responsible for this:
Where the first argument will be the name of the communication method in the model, that is:
And the second will be the name of the class in which you want to display the resulting models.
The text was updated successfully, but these errors were encountered: