@extends('layouts/ums_layout') @section('title', '| New Activities') @section('content')
Add Section Settings

Section Settings

{{ csrf_field() }} @foreach($sectionLists as $section) @endforeach
SL# Trimester Names Course Name Section Total Students Sections Sub Sections Actions
{{++$no}} {{$section->trimesterName}}({{$section->year}}) {{$section->title}} @php if($section->sectionName) { $sectionNameArray = explode(",", $section->sectionName); $sectionCapacityArray = explode(",", $section->sectionCapacity); if(count($sectionNameArray)>1) { for($i=0;$i'; } } else { echo $section->sectionName; } } else { echo 'No Section Found'; } @endphp {{$section->totalCapacity}} @php $subSections = json_decode($section->subSectionIds); if($subSections) { foreach ($subSections as $value) { echo $value->sectionName.'='.$value->sectionCapacity.'
'; } } else { echo 'No Sub Section Found'; } @endphp
 
@include('dataTableScript') @endsection