@extends('layouts.examiner') @section('title', 'Upload Questions') @section('content')
| S/N | QUESTION | CORRECT OPTION | OPTION 1 | OPTION 2 | OPTION 3 | COURSE CODE | STATUS |
|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $r['row'][1] ?? '' }} | {{ $r['row'][2] ?? '' }} | {{ $r['row'][3] ?? '' }} | {{ $r['row'][4] ?? '' }} | {{ $r['row'][5] ?? '' }} | {{ $r['row'][6] ?? '' }} | {{ $r['status'] }} |
Row 1 is the header (skipped). Each data row = one question.
| Col | Content |
|---|---|
| A | S/N |
| B | Question text |
| C | Correct option |
| D | Wrong option 1 |
| E | Wrong option 2 |
| F | Wrong option 3 |
| G | Course code (e.g. GSS 101) |
The course code must match an existing subject. Existing questions are updated in-place.