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

Classroom Learning 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 Failed Error Topic List Action
{{ $number }} . {{ $entity->{'name'} }} {{ ($entity->{'passed'} == '') ? 0 : $entity->{'passed'} }} Topic(s) Passed {{ ($entity->{'failed'} == '') ? 0 : $entity->{'failed'} }} Topic(s) Failed {{ ($entity->{'error'} == '') ? 0 : $entity->{'error'} }} Topic(s) Error {!! (nl2br($entity->{'topiclist'}) == '') ? '-' : (nl2br($entity->{'topiclist'})) !!}
@endsection