#Value null without a ternary operator

1 messages · Page 1 of 1 (latest)

formal quiver
#

Does that literally imply that this line there is sometimes null returned?

'profile_title' => $coverLetter->profile ? $coverLetter->profile->title : null,
#

maybe replace with

'profile_title' => $coverLetter->profile->title ??,

and see what data comes back.. probably some nulls..