{{ trans('update.top_instructors') }}

@if(!empty($topInstructors['total']))
{{-- Total Instructors --}}
{{ $topInstructors['total'] }} {{ trans('update.total_instructors') }}
{{-- Active Instructors --}}
{{ $topInstructors['totalActive'] }} {{ trans('update.active_instructors') }}
@foreach($topInstructors['instructors'] as $topInstructor)
{{ $topInstructor->full_name }}
{{ $topInstructor->email }}
{{ handlePrice($topInstructor->getSaleAmounts()) }}
@endforeach @else {{-- If Empty --}}
{{ trans('update.no_instructor!') }}
{{ trans('update.organization_dashboard_no_instructor_hint') }}
{{ trans('update.new_instructor') }}

{{ trans('update.create_instructors_for_your_organization') }}

@endif