@if($type == 'faculty')
@endif
@if($type == 'advisor')
@endif
@if($type == 'specialty')
@endif
@if($type == 'all' || $id > 0)
Справката съдържа {{$data->count()}} записа.
@endif
@foreach($data as $phd)
Професионално направление
{{$phd->specialty->professional_area->code}} {{$phd->specialty->professional_area->name}}
Факултет
{{$phd->department->faculty->name}}
Катедра
{{$phd->department->name}}
Специалност
{{$phd->specialty->name}}
Научен ръководител
{{\App\ScientificAdvisor::where('id',$phd->scientific_advisor)->first()->buildName()}}
@if(!empty($phd->scientific_advisor_sec))
; {{\App\ScientificAdvisor::where('id',$phd->scientific_advisor_sec)->first()->buildName()}}
@endif
Форма на обучение
{{$phd->edu_form->name}}
Година на зачисляване
{{\Carbon\Carbon::parse($phd->enrollment_date)->year}}
@endforeach
@endsection