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

{{$organization->name}}

{{$organization->professional_title}}

{{__('Personal Information')}}

{{$organization->about_me}}

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

    {{$organization->name}}

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

    {{$organization->phone_number}}

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

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

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

    {{$organization->address}}

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

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

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

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

{{__('Social Links')}}

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

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

{{ __('Published Courses') }}

icon

{{$organization->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($organization->certificates as $certificate) @endforeach
{{__('Title of the Certificate')}} {{__('Year')}}
{{$certificate->name}} {{$certificate->passing_year}}

{{__('Awards')}}

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