Skip to content

Commit adc481f

Browse files
authored
Update relationships.md
1 parent ce55fef commit adc481f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

relationships.md

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ Looking at `{data: 'posts', name: 'posts.title'},`:
4747
- `data: posts` represents the data key (`data.posts`) that we are going to display on our table.
4848
- `name: posts.title` represents the `User` model relationship (`posts`) and the column we are going to perform our search (`title`).
4949

50+
It is advised that you include select('table.') on query to avoid weird issues where id from related model replaces the id of the main model.
51+
```php
52+
$posts = Post::with('user')->select('posts.*');
53+
```
5054
## Nested Relationships
5155
Same strategy goes for nested relationships but do **NOTE** that ordering is not yet fully tested on nested relationships.
5256

0 commit comments

Comments
 (0)