Guest User

Untitled

a guest
Apr 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $user = User::find(1); // my user object
  2. // I want to add my defined user profile from the user_profile relationship
  3. $userdata = $user->with('user_profile')->first();
  4.  
  5. $user = User::find(1); // my user object
  6. // I want to add my defined user profile from the user_profile relationship
  7. $userdata = $user->with('user_profile')->get();
Add Comment
Please, Sign In to add comment