Level 10
@yansusanto you were suggested to use LIKE operator for first_name and last_name as they are string. You are not getting any match that is why you are getting the error. In order to ignore this use
isset($post->user->fullname) ? $post->user->fullname : '';
In your blade and close the issue.
For new question please open a new discussion.