@extends('layouts.main') @section('title','Assignment Result Search') @section('content')
Please wait, Loading...
@php $filter_range = HireMeeHelper::countBasedLimiter($total_results_count->count(),getenv('EXCEL_DOWNLOAD_ROWS')); @endphp
{!! Form::select('rprt_filter_range',$filter_range,'',['class'=>'form-control','id'=>'rprt_filter_range']) !!}
@if($resultReport->count() == 0) @endif @foreach($resultReport as $result) @php $today_time = Carbon\Carbon::now(); $today_time = strtotime($today_time->toDateTimeString()); $end_date = strtotime($result->end_date); @endphp @endforeach
Candidate Name Candidate Email Address Percentage Evaluate Send grades to students Report Link

No Records Found

{{ $result->candidate_name }} {{ $result->candidate_email }} {{ round($result->total_percentage,1) }}% @if($today_time > $end_date) @else Waiting for candidate completion @endif {!! $result->is_published==1 ? 'Yes' : 'No' !!} @if($result->score) View Report @else Waiting for Evaluate @endif
{!! Form::open(["action" => "Gold\College\AssignmentController@assignmentSearchResults", "id" => "load_more_form"]) !!} {!! Form::hidden("assignment", $input['assignment']) !!} {!! Form::hidden("order_by_field", isset($input['order_by_field']) ? $input['order_by_field'] : '') !!} {!! Form::hidden("order_by_type", isset($input['order_by_type']) ? $input['order_by_type'] : '') !!} {!! Form::hidden("skip_count", "100", ["id" => "skip_count"]) !!} {!! Form::close() !!}
@endsection @section('footer') @endsection