@extends('../layout/' . $layout)
@section('subhead')
Atarud MIS - Sections List
@endsection
@section('subcontent')
Sections List
# |
Name |
Program |
Actions |
@foreach($sections as $row)
@php
$semester = App\Models\Semester::where('id',$row->semester_id)->first();
@endphp
{{ ++$c }} |
{{ $row->name }} |
{{ $semester->name }} |
|
@endforeach
@include('../pages/section/delete')
@include('../pages/section/create')
@endsection