@extends('layouts.app') @section('content')
Individual Student Statistic Report
@if($individualStatisticList != null && count($individualStatisticList)>0) @foreach($individualStatisticList as $item) @endforeach @else @endif
StudentID Number Correct Percent Percentile Rank
{{$item->studentID}} {{$item->grade}} {{number_format($item->percent*100,2)."%"}} {{$item->rank}}
No data found
@endsection