@extends('student.layout') @section('title','My Performance') @section('page-title','My Performance') @section('content')
| Test | Date | Topic | Marks | % | Grade | Status | Remarks |
|---|---|---|---|---|---|---|---|
| {{ $r->test?->title }} | {{ $r->test?->test_date?->format('d M Y') }} | {{ $r->test?->topic ?: '—' }} | @if($r->marks_obtained !== null) {{ $r->marks_obtained }} / {{ $r->test?->total_marks }} @else — @endif |
@if($r->marks_obtained !== null)
{{ $pct }}%
@else —
@endif
|
@if($r->grade) {{ $r->grade }} @else — @endif | @if($r->marks_obtained !== null) {{ $r->marks_obtained >= ($r->test?->passing_marks??60) ? 'Pass' : 'Fail' }} @else Pending @endif | {{ $r->remarks ?: '—' }} |