Sindbad~EG File Manager
@extends('selectediclayout')
@section('title')
<title>Selection</title>
@stop
@if(isset($selection_type))
@section('ContentTitle', $selection_type .' Accepted for AIOC 2023, Kochi')
@else
@section('ContentTitle','Instruction Courses Accepted for AIOC 2023, Kochi')
@endif
@section('content')
<div class = "row">
<div class = 'col-lg-12'>
<table class="table-bordered sticky-enabled" style="font-size: 13px;">
<thead>
<th>S.No</th>
<th>ICNo</th>
<th>Title</th>
<th>Section</th>
<th>Membership No.</th>
<th>Chief Instructor</th>
<th>Co Instructors</th>
{{-- <th>Level</th> --}}
</thead>
<tbody>
<?php $i=0; ?>
@foreach($abstracts as $key => $abs)
<tr>
<td data-label="S.No">{{$i += 1}}</td>
<td data-label="ICNo">
<a href="{{ url('viewabstract?id='.$abs->abs_id) }}" target="_blank">
{{ $abs->abs_type }}{{ $abs->abs_no }}
</a>
</td>
<td data-label="Title" style="text-align:left;">
<a href="{{ url('viewabstract?id='.$abs->abs_id) }}" target="_blank">{{ $abs->title }}
</a></td>
<td data-label="Section">{{ $abs->category_display_name }}</td>
<td data-label="Membership No.">{{ $abs->membership_no }}</td>
<td data-label="Chief Instructor">{{ $abs->name }}</td>
<?php $tmpCoI = [];?>
@if(isset($AllAuthors[$abs->abs_id]))
@foreach($AllAuthors[$abs->abs_id] as $key => $authvalue)
@if($authvalue->abs_id == $abs->abs_id)
@if($authvalue->role_id == '33')
<?php array_push($tmpCoI,$authvalue->name)?>
@endif
@endif
@endforeach
@endif
<td data-label="Co Instructors">{{ implode(',',array_unique($tmpCoI))}}</td>
{{-- <td data-label="Level">{{ $abs->level }}</td> --}}
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@stop
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists