@if ($user->$userRelation->is_offline == INSTRUCTOR_IS_OFFLINE)
{{ __('Instructor is temporarily unavailable') }}.
{{ __(@$user->$userRelation->offline_message) }}
@endif
{{ __('About') }} {{ @$user->name }}
{{ @$user->$userRelation->about_me }}
{{ __('Skills') }}
@forelse ($user->$userRelation->skills as $skill)
- {{ $skill->title }}
@empty
- {{ __('No skills to show') }}
@endforelse
{{ __('Certifications') }}
@forelse(@$user->$userRelation->certificates as $certificate)
- {{ $certificate->passing_year
}}{{ $certificate->name }}
@empty
- {{ __('No certificate to show') }}
@endforelse
{{ __('Awards') }}
@forelse(@$user->$userRelation->awards as $award)
- {{ $award->winning_year
}}{{ $award->name }}
@empty
- {{ __('No award to show') }}
@endforelse
@if(!get_option('private_mode') || !auth()->guest())
@if($user->role == USER_ROLE_INSTRUCTOR)
{{ __('My courses') }} ({{
@$user->courses->count() }})
@include('frontend.instructor.render-instructor-courses')
@if($courses->hasPages())
@endif
@elseif($user->role == USER_ROLE_ORGANIZATION)
@include('frontend.instructor.render-instructor-courses')
@if($courses->hasPages())
@endif
@foreach ($instructors as $instructorUser)
@endforeach
@if($instructors->hasPages())
@endif
@foreach($consultationInstructors as $instructorUser)
@endforeach
@endif
@endif