@extends('layouts.app') @section('title', 'Student Subject Detail') @section('content')
| Menu | Data | Menu | Data | Menu | Data |
|---|---|---|---|---|---|
| Student's ID | {{ $studentuser->uid }} | Student's Name | {{ $studentuser->name }} | Roll | {{ $studentuser->roll }} |
| SL | Class | Session | Group | Year | Suject Name | Code | Type | Serial | Status | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ optional($studentsubject->student->classtype)->name }} | {{ optional($studentsubject->student->session)->name }} | {{ optional($studentsubject->student->group)->name }} | {{ optional($studentsubject->classyear)->name }} | {{ optional($studentsubject->subject)->name }} | {{ optional($studentsubject->subject)->code }} | {{ $studentsubject->student_subject_type }} | {{ $studentsubject->serial }} | {{ $studentsubject->status }} | @if ($studentsubject->student_subject_type == 'Compulsory') Make Optional @else Make Compulsory @endif @if ($studentsubject->status == 'Active') Make Inactive @else Make Active @endif Delete |