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

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

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

Επεξεργασία Αίτησης

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::model($subject, ['route'=> ['update.subject.project', $subject->id], 'method'=>'PUT', 'class'=> 'form-horizontal needs-validation', 'files'=> true ]) !!}
@
{{ Form::text('protocol', null, [ 'class' => 'form-control protocol', 'placeholder' => 'Αίτηση', 'required' =>'', 'id'=>'protocol', 'disabled' => '', 'name' => 'protocol' ])}}
{{ Form::select('catreq_id', $cats, null, [ 'class' => 'form-control catreq_id', 'placeholder' => 'Κατηγορία Αίτησης', 'required' =>'', 'id'=>'catreq_ids', 'disabled' => '', 'name' => 'catreq_ids' ])}}
{{ Form::select('project_id', $pros, null, [ 'class' => 'form-control project_id', 'placeholder' => 'Κωδικός Έργου', 'required' =>'', 'disabled' => '', 'id'=>'project_id', 'name' => 'project_id' ])}}

Επεξεργασία Στοχείων Έργου

{{ Form::text('title', $subject->project->title, array( 'class' => 'form-control', 'id' => 'validationTooltip01 title', 'placeholder' => 'Τίτλος Έργου', 'maxlength'=>'255')) }}
{{ Form::select('funding_id', $funds, $subject->project->funding->id, [ 'class' => 'form-control funding_id', 'required' =>'', 'id'=>'funding_id', 'name' => 'funding_id' ])}}
{{ Form::select('researcher_id', $res, $subject->project->researcher->id, [ 'class' => 'form-control funding_id', 'required' =>'', 'id'=>'researcher_id', 'name' => 'researcher_id' ])}}
{{ Form::text('project_start', $subject->project->start, array( 'class' => 'form-control', 'id' => 'project_start', 'placeholder' => 'Έναρξη Έργου', 'maxlength'=>'255')) }}
{{ Form::text('project_end', $subject->project->end, array( 'class' => 'form-control', 'id' => 'project_end', 'placeholder' => 'Λήξη Έργου', 'maxlength'=>'255')) }}
{{ Form::text('project_budget', $subject->project->budget, array( 'class' => 'form-control', 'id' => 'project_budget', 'placeholder' => 'Προϋπολογισμός Έργου', 'maxlength'=>'255')) }}
.000
{!! Form::close() !!}

Επιλέξιμες Δαπάνες

@foreach ($subject->project->costs as $cost) @endforeach
Επιλέξιμη Δαπάνη Προϋπολογισμός Ενέργειες
{{$cost->cost_name}} {{$cost->cost_budget}} @component('costs.components.create') @slot('projectid') {{$subject->project_id}} @endslot @slot('flagid') subject @endslot @endcomponent {!! Form::model($cost, [ 'route' => ['update.cost', $cost->id], 'method' => 'PUT', 'class'=> 'form-horizontal', 'id'=>'form-post', 'style'=>'display:inline-block;']) !!} @component('costs.components.edit') @slot('costid') {{$cost->id}} @endslot @slot('flagid') subject @endslot @endcomponent @component('costs.components.delete') @slot('costid') {{$cost->id}} @endslot @slot('costname') {{$cost->cost_name}} @endslot @slot('flagid') subject @endslot @endcomponent
Επιλέξιμη Δαπάνη Προϋπολογισμός Ενέργειες
@endsection @section('javascripts') @endsection