@extends('admin.layout') @section('content') @if(\Illuminate\Support\Facades\Session::has('success'))
{{Session::get('success')}}
@endif

{{--

Търсене

--}}

Докторанти

{{----}}
Добавяне 

@if(isset($phdstudents) && count($phdstudents) > 0)
@foreach($phdstudents as $p) @endforeach
Име Професионално направление Специалност Катедра Ръководители Форма Дата на зачисляване Срок Състояние Действия
{{$p->name}} {{$p->surname}} {{$p->last_name}} {{$p->specialty->professional_area->code}} {{$p->specialty->professional_area->name}} {{$p->specialty->name}} {{$p->department->name}} {{\App\ScientificAdvisor::where('id',$p->scientific_advisor)->first()->buildName()}} @if(!empty($p->scientific_advisor_sec))
{{\App\ScientificAdvisor::where('id',$p->scientific_advisor_sec)->first()->buildName()}} @endif
{{$p->edu_form->name}} {{$p->enrollment_date}} {{$p->current_deadline}} {{$p->getStatus()}}
@else Няма въведени докторанти. @endif
@include('admin.partials.statusmodal') @include('admin.partials.historymodal') @endsection