@extends('layouts.app') @section('title', 'Student Subject Detail') @section('content')
Academic Information
Menu Data Menu Data Menu Data
Student's ID {{ $studentuser->uid }} Student's Name {{ $studentuser->name }} Roll {{ $studentuser->roll }}
Subjects List Add Subject
@forelse ($studentsubjects as $studentsubject) @empty @endforelse
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
{{-- **************************** Status Change Modal Div **************************** --}}
@endsection @push('delete')
@csrf @method('delete')
@endpush