Academic Year Sessions
@include('admin.errors.form-errors')
| Id |
Education System |
Board |
Session |
Name |
Status |
Year |
Start Date |
End Date |
|
@php
$count=0
@endphp
@foreach ($academicyearsessions as $acys )
| {{++$count}} |
{{$educationSystems->firstWhere('esid',$sessions->firstWhere('sid',$acys->sid)->esid)->esname}}
|
{{$boards->firstWhere('bid',$sessions->firstWhere('sid',$acys->sid)->bid)->bname}}
|
{{$sessions->firstWhere('sid',$acys->sid)->sname}} |
{{$acys->acyname}} |
@if ($acys->is_current)
Current |
@elseif ($acys->is_next)
Next |
@else
Finished |
@endif
{{$acys->year}} |
{{$acys->acystartdate}} |
{{$acys->acyenddate}} |
|
@endforeach