@extends('layouts.studentapp') @section('title', 'Result List') @section('content')
| # | Student UID | Student Name | Roll | Exam Name | Total | Point | GPA | Action | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ optional($item->student->user)->uid }} | {{ optional($item->student->user)->name }} | {{ optional($item->student->user)->roll }} | {{ optional($item->exam)->name }} | @if ($item->attendance == 'Present'){{ $item->total }} | {{ $item->point }} | {{ $item->grade }} | View Marksheet | @elseAbsent | @endif|||
Result Not Found
@endif