@extends('teacher/home') @section('content')

Android UI Classroom Result

@if (Session::has('message'))
{{ Session::get('message') }}
@endif {{ Form::open(['method' => 'GET']) }}
{!! Form::label('student', 'Classroom:') !!} {{ Form::close() }}
@php($number=1) @foreach($entities as $entity) @php($number++) @endforeach
Student Name Passed Topics Total Passed Topic List Action
{{ $number }} . {{ $entity->{'name'} }} {{ ($entity->{'passednumber'} == '') ? 0 : $entity->{'passednumber'} }} Topic(s) {{ $topiccount }} Topics {!! (nl2br($entity->{'topiclist'}) == '') ? '-' : (nl2br($entity->{'topiclist'})) !!}
@endsection