@if (Session::has('message'))
{{ Session::get('message') }}
@endif
@if(!empty($errors->all()))
{{ Html::ul($errors->all())}}
@endif
@if (!empty($itemsstage))
{{ Form::open(['method' => 'GET']) }}
{!! Form::label('stage', 'Select Stage:') !!}
{!! Form::select('stageList', $itemsstage , $filter, ['class' => 'form-control', 'id' => 'stageList', 'onchange' => 'this.form.submit();']) !!}
{{ Form::close() }}
|
Guide Documents |
Test Files |
Supplement Files |
Other Files |
@foreach($topic as $data)
| Resource for {{ $data['name'] }} |
{{ $data['desc'] }}
|
@if($data['guide'] !='')
@else
Empty
@endif
|
@if($data['testfile'] !='')
@else
Empty
@endif
|
@if($data['supplement'] !='')
@else
Empty
@endif
|
@if($data['other'] !='')
@else
Empty
@endif
|
@endforeach
@else
Exercise is not available at this time |
@endif