Sindbad~EG File Manager
@extends('selectedfplayout')
@section('title')
<title>Selection</title>
@stop
@section('ContentTitle','Selected FP in ' .$category)
@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>FPNo</th>
<th>Title</th>
{{-- <th>Section</th> --}}
<th>Chief Author</th>
<th>Presenting Author</th>
{{-- <th>Pres. Type</th> --}}
</thead>
<tbody>
<?php $i=0; ?>
@foreach($abstracts as $key => $abs)
<tr>
<td data-label="S.No">{{$i += 1}}</td>
<td data-label="FPNo">
<a href="{{ url('viewabstract?id='.$abs->abs_id) }}" target="_blank"> {{ $abs->abs_type }}{{ $abs->abs_no }}</a></td>
<td data-label="Title">
<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="Chief Author">{{ $abs->name }}</td>
<?php $tmpPA = [];?>
@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 == '35')
<?php array_push($tmpPA,$authvalue->name)?>
@endif
@endif
@endforeach
@endif
<td data-label="Presenting author">{{ implode(',',$tmpPA)}}</td>
{{-- <td data-label="Presentation type">{{ $abs->presentation_type }}</td> --}}
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@stop
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists