@php use App\Models\PopularitySkill; $selectedSkillIds = $player->popularitySkills->pluck('id')->all(); $otherSkillId = PopularitySkill::OTHER; $otherSelected = in_array($otherSkillId, $selectedSkillIds, true); $otherText = optional($player->popularitySkills->firstWhere('id', $otherSkillId))->pivot->other_text ?? ''; $player_image = $player && $player->profile_image ? $player->profileImageUrl() : ($player->user?->profileImageUrl() ?? placeholder_image_url('player')); @endphp