@if (Session::has('message'))
{{ Session::get('message') }}
@endif
{{ Form::open(['method' => 'GET']) }}
{!! Form::label('topic', 'Topic:') !!}
{!! Form::select('topicList', $items , $filter, ['class' => 'form-control', 'id' => 'topicList', 'onchange' => 'this.form.submit();']) !!}
{{ Form::close() }}
@php ($complete = true)
{!! Form::label('tit1', 'Result of Each Task:') !!}
@if ($valid=='0')
Submit a Task Result
@endif
| Task No. |
Description |
Status |
Duration |
Evidence |
Comment |
Action |
@foreach($entities as $entity)
| {{ $entity['taskno'] }} |
{{ $entity['desc'] }} |
@if ($valid != '0')
@php ($complete = false)
Task result was already validated |
@elseif ($entity['status']=='')
@php ($complete = false)
Not yet uploaded |
@else
{{ $entity['status'] }} |
{{ $entity['duration'] }} minutes |
 }}) |
{{ $entity['comment'] }} |
|
@endif
@endforeach
{{ Form::open(['route'=>'results.store', 'files'=>true]) }}
{{ Form::radio('option', 'files' , true, ['onclick' => 'this.form.submit();']) }}
{!! Form::label('tit2', 'Learning Files Submission:') !!}
@if ($valid=='0')
Submit a Learning File
@endif
| No. |
File Name |
Folder Path |
Description |
Status |
Action |
@foreach($lfiles as $index => $lfile)
| {{ $index +1 }} |
{{ $lfile['fileName'] }} |
{{ $lfile['path'] }} |
{{ $lfile['desc'] }} |
@if ($valid!='0')
@php ($complete = false)
Task result was already validated |
@elseif ($lfile['rscfile']=='')
@php ($complete = false)
Not yet submitted |
@else
|
|
@endif
@endforeach
{{ Form::radio('option', 'zipfile' , false, ['onclick' => 'this.form.submit();']) }}
{!! Form::label('tit55', 'Zippped Project Submission:') !!}
@if ($valid=='0')
{{ Form::file('zip', ['class'=>'form-control']) }}
TaskResultController@valsub'
{{ Form::submit('Upload', ['class' => 'btn btn-primary pull-right']) }}
@endif
{{ Form::close() }}
@if ($valid=='0')
@if ($complete)
Validate This Learning
@else
Submission is Not Complete
@endif
@else
Validation is Success
@endif