@php $userInfo = $instructor?->userable ?? null; $locale = $locale ?? app()->getLocale(); $translations = $translations ?? []; $designationData = []; if (empty($translations) && $userInfo) { $translations = parse_translation($userInfo, $locale); } if ($userInfo?->designation) { $designationData = parse_translation($userInfo?->designation, $locale); } $translateRoute = 'instructor.translate'; if (isOrganization()) { $translateRoute = 'organization.instructor.translate'; } @endphp