@extends('website.layouts.master') @section('title', $user->lang('name')) @section('content') @include('website.layouts.title', ['simple'=>true])


@php($file = $user->archive?->findChildByContentType("Personal Photo")) @if($file) @else @endif



@if(lang() == 'en')

{{ $user->en_name }}

@else

{{ $user->ar_name }}

@endif

{{ ($instructor->instructorDegree)?$instructor->instructorDegree->lang('name'):"" }} @lang('tr.at') {{ ($instructor->department)?$instructor->department->lang('name'):"" }}


@lang('tr.Career Info')

@if($instructor->emeritus_at)
@lang('tr.Emeritus') @lang('tr.at') : {{ $instructor->emeritus_at }}
@endif @if($instructor->professor_at)
@lang('tr.Professor') @lang('tr.at') : {{ $instructor->professor_at }}
@endif @if($instructor->assistant_professor_at)
@lang('tr.Assistant Professor') @lang('tr.at') : {{ $instructor->assistant_professor_at }}
@endif @if($instructor->teacher_at)
@lang('tr.Teacher') @lang('tr.at') : {{ $instructor->teacher_at }}
@endif @if($instructor->teaching_assistant_at)
@lang('tr.Teacher Assistant') @lang('tr.at') : {{ $instructor->teaching_assistant_at }}
@endif @if($instructor->demonstrator_at)
@lang('tr.Demonstrator') @lang('tr.at') : {{ $instructor->demonstrator_at }}
@endif

@lang('tr.Academic Info')

@lang('tr.Email') : {{ $user->email }}
@if($instructor->phd_place != null)
@lang('tr.PHD') : {{ $instructor->phd_at }} @lang('tr.from') {{ $instructor->phd_place }}
@endif @if($instructor->msc_at != null)
@lang('tr.MSC') : {{ $instructor->msc_at }} @lang('tr.from') {{ $instructor->msc_place }}
@endif
@lang('tr.Graduation') : @if($instructor->graduation_month) {{ $instructor->graduation_month }} / @endif @if($instructor->graduation_year) {{ $instructor->graduation_year }} @endif @if($instructor->lang("university") != null) @lang('tr.from') @if($instructor->lang("faculty") != null) {{ $instructor->lang("faculty") }} , @endif @if($instructor->lang("university") != null) {{ $instructor->lang("university") }} @endif @endif
@if($instructor->scopus_url)@endif @if($instructor->google_scholar_url)@endif @if($instructor->orcid)@endif

@if($instructor->brief)

@lang('tr.Brief')

{!! nl2br($instructor->brief) !!}

@endif @if($instructor->awards)

@lang('tr.Awards')

{!! nl2br($instructor->awards) !!}

@endif @if($instructor->books)

@lang('tr.Books')

{!! nl2br($instructor->books) !!}

@endif @if($instructor->articles)

@lang('tr.Articles')

{!! nl2br($instructor->articles) !!}

@endif @php($publications = $instructor->getPublications()) @if(count($publications)>0)

@lang('tr.Publications')

    @foreach($publications as $publication)
  1. {{$publication->contributors}}, " @if($publication->url) {{ $publication->title }} @else {{$publication->title}} @endif ", {{$publication->journal_name}}, {{$publication->year}}
  2. @endforeach
@elseif($instructor->publications)

@lang('tr.Publications')

{!! nl2br($instructor->publications) !!}

@endif @php($projects = $instructor->getProjects()) @if(count($projects)>0)

@lang('tr.Research Projects')

    @foreach($projects as $project)
  1. "{{ $project->title }}", @foreach($project->pis as $pi) {{ $pi->user->academicName() }}, @endforeach @foreach($project->organizations as $organization) {{ $organization->organization->lang('name') }}, @endforeach
  2. @endforeach
@elseif($instructor->research_projects)

@lang('tr.Research Projects')

{!! nl2br($instructor->research_projects) !!}

@endif
@endsection @section('pagejs') @endsection