@extends('advisorcp.layout') @section('content')

Моите конкурси

@if(isset($competitions) && count($competitions) > 0) @foreach($competitions as $item) @endforeach
Научна специалност Статус Кандидати
{{$item->specialty->name}} {{\App\ApplicationForm::where('competition_id',$item->id)->count()}} @if($item->status == 0) {{\Illuminate\Support\Facades\Lang::get('advisorcp.btn_finish_documentation')}} @endif
@else
Не са намерени конкурси.
@endif
{{--
Статистика
Panel content
--}}

Докторанти

@if(isset($phdstudents) && count($phdstudents) > 0) @foreach($phdstudents as $p) @endforeach
Име Специалност Срок
{{$p->name}} {{$p->surname}} {{$p->last_name}} {{$p->specialty->name}} {{$p->current_deadline}}
@else
Не са намерени докторанти, на които сте научен ръководител.
@endif
@endsection