I want to eagerly load a specific user, with their User Profile. My table and class is called users and User respectively. My Profiles table and class is user_profiles and UserProfile.
This is what I'm trying but it doesn't seem to work
return User::with('user_profiles')->find(1);