@extends('layouts.master') @section('content')

Επιτροπή Ερευνών Version 1.0

{!! Breadcrumbs::render('demand.show', $subject) !!}

Καρτέλα Αίτησης

@if ($subject->status==1) Με Εισήγηση @component('subjects.components.suggestions.view') @slot('subjid') {{$subject->id}} @endslot @slot('catreq') {{$subject->catreq->catreq_name}} @endslot @slot('codeid') {{$subject->project->codeid}} @endslot @slot('suggestion') {{$subject->suggestion}} @endslot @endcomponent @elseif ($subject->status == 0) @can('members') @endcan @can('admins') Προσθήκη Εισήγησης @component('subjects.components.suggestions.create') @slot('subjectid') {{$subject->id}} @endslot @slot('catreq') {{$subject->catreq->catreq_name}} @endslot @slot('codeid') {{$subject->project->codeid}} @endslot @slot('flagid') demand @endslot @endcomponent @endcan @endif
  • Αριθμός Συνεδρίασης: {{$subject->meeting->number_meeting}}
  • Αίτηση: {{$subject->protocol}}
  • Ημερομηνία-Ώρα: {{$subject->meeting->date_meeting}} - {{$subject->meeting->hour_meeting}}
  • Κατηγορία: {{$subject->catreq->catreq_name}}
@if($subject->comments)
  • Παρατηρησεις:

    {{$subject->comments}}

@endif
@if($subject->catreq_id == 2 || $subject->catreq_id == 1)
Δικαιουχος {{$subject->benefit_user}}
Διαστημα {{$subject->date_distance}}
% επι των αποδοχων {{$subject->budget_rate}}
@elseif ($subject->catreq_id == 3)
  • Παρατηρησεις:

    {{$subject->comments}}

@endif
@if ($subject->attaches->count() == 0)

Info

Δεν υπάρχουν διαθέσιμα συνημμένα αρχεία

@else

Συνοδευτικά Έγγραφα

@foreach ($subject->attaches as $attach) @endforeach
Αρχείο Περιγραφή
{{$attach->filename}} {{$attach->description}}
View
@endif

Καρτέλα Έργου: {{$subject->project->codeid}}

  • Τίτλος Έργου: {{$subject->project->title}}
  • Χρηματοδότηση: {{$subject->project->funding->funding_name}}
  • Υπεύθυνος: {{$subject->project->researcher->firstname}} {{$subject->project->researcher->lastname}}
  • Ινστιτούτο: {{$subject->project->researcher->department->department_name}}
@if($subject->catreq_id == 4)
Έναρξη: {{date('d-m-Y', strtotime($subject->project->start))}}
Λήξη: {{date('d-m-Y', strtotime($subject->project->end))}}
Προϋπολογισμός: {{$subject->project->budget}}
@foreach ($subject->project->costs as $cost) @endforeach
Επιλέξιμη Δαπάνη Κόστος
{{$cost->cost_name}}
{{$cost->cost_budget}}
@endif
@endsection