@extends('layouts.admin') @section('content')
Code
{{ $subject->code }}
Exam
{{ $subject->exam->name ?? 'N/A' }}
Duration (min)
{{ $subject->duration_minutes }}
Total Marks
{{ $subject->total_marks }}
Answer Sheets
{{ $subject->answer_sheets_count ?? $subject->answer_sheets?->count() ?? 0 }}
| Date | Time | Center |
|---|---|---|
| {{ $schedule->date?->format('d M Y') ?? 'N/A' }} | {{ $schedule->start_time ?? '' }} - {{ $schedule->end_time ?? '' }} | {{ $schedule->center->name ?? 'N/A' }} |
| No schedules found. | ||
| Title | Type | Questions |
|---|---|---|
| {{ $paper->title ?? 'Untitled' }} | {{ ucfirst($paper->type ?? 'N/A') }} | {{ $paper->questions?->count() ?? 0 }} |
| No question papers found. | ||
| Student | Score | Status |
|---|---|---|
| {{ $result->student->name ?? 'N/A' }} | {{ $result->score ?? 'N/A' }} | {{ ucfirst($result->status ?? 'pending') }} |
| No results found. | ||