Level 19
You have this error because your code does not return the appropriate object type.
// Check what is the result of this and you will understand
dd($message->reaction->load('user', 'user.corporation'));
Check the documentation and you will see there are other ways to accomplish what you want like.
Message::with('reaction')->paginate(10);
Happy coding