@extends('student/fluttercourse/home') @section('content')

Android Programming Excercise with APLAS

@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() }}
@foreach($topic as $data) @endforeach
Guide Documents Test Files Supplement Files Other Files
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
@else Exercise is not available at this time @endif
@endsection