@extends('layouts.admin') @section('content')
img

{{$instructor->name}}

{{$instructor->professional_title}}

{{__('Personal Information')}}

{{$instructor->about_me}}

  • {{__('Name')}}:

    {{$instructor->name}}

  • {{__('Phone')}}:

    {{$instructor->phone_number}}

  • {{__('Email')}}:

    {{$instructor->user ? $instructor->user->email : '' }}

  • {{ __('Address') }}:

    {{$instructor->address}}

  • {{ __('Location') }}:

    {{$instructor->city ? $instructor->city->name.', ' : ''}} {{$instructor->state ? $instructor->state->name.', ' : ''}} {{$instructor->country ? $instructor->country->country_name : ''}}

  • {{ __('Auto Content Approval') }}:

    {{ $instructor->auto_content_approval == 1 ? ' Enable' : ' Disable' }}

{{__('Social Links')}}

@php $social_link = json_decode($instructor->social_link); @endphp
icon

{{$instructor->publishedCourses->count()}}

{{ __('Published Courses') }}

icon

{{$instructor->pendingCourses->count()}}

{{ __('Pending Courses') }}

icon

@if(get_currency_placement() == 'after') {{ @$total_earning }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ @$total_earning }} @endif

{{ __('Total Earning') }}

{{__('Certifications')}}

@foreach($instructor->certificates as $certificate) @endforeach
{{__('Title of the Certificate')}} {{__('Year')}}
{{$certificate->name}} {{$certificate->passing_year}}

{{__('Awards')}}

@foreach($instructor->awards as $award) @endforeach
{{__('Title of the Award')}} {{__('Year')}}
{{$award->name}} {{$award->winning_year}}
@endsection