Guest User

Untitled

a guest
Nov 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class UserController
  2. {
  3. public function posts(User $user)
  4. {
  5. return $user->load(['username', 'name', 'posts.body' // solution one
  6.  
  7. return $user->load(['username', 'name', 'posts'=>function($q){
  8. $q->select(['body']
  9. }])// solution two
Add Comment
Please, Sign In to add comment