|
@@ -70,27 +70,30 @@
|
|
|
</span>
|
|
|
</div>
|
|
|
</td>
|
|
|
- <td style="font-size: 11px; text-align:center;">
|
|
|
+ <td style="font-size: 11px; text-align:center;">
|
|
|
<div style="font-size: 11px; display:block;">
|
|
|
<div style="font-size: 11px; color: black;"> Pu :
|
|
|
- @if($row->student_details->is_publication==1)
|
|
|
+ @if($row->student_details->is_publication==1)
|
|
|
<span class="label_badge_work"> yes</span>
|
|
|
@else
|
|
|
<span class="label_badge_no"> No</span>
|
|
|
@endif
|
|
|
</div>
|
|
|
<div class="mt-1" style="font-size: 11px; color: black;"> Con :
|
|
|
- @if($row->student_details->is_attended_conference==1)
|
|
|
+ @if($row->student_details->is_attended_conference==1)
|
|
|
<span class="label_badge_work"> yes</span>
|
|
|
@else
|
|
|
<span class="label_badge_no"> No</span>
|
|
|
@endif
|
|
|
- </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td style="font-size: 11px;">
|
|
|
+ @php
|
|
|
+ $hashids = new \Hashids\Hashids('application', 25);
|
|
|
+ @endphp
|
|
|
<div class="inner_right">
|
|
|
- <a href="{{ url('supervisor/applications') }}/{{$row->id}}"><strong style="font-size:11px; color:black;">{{cn($row,'proposal.title','')}}</strong></a></br>
|
|
|
+ <a href="{{ url('supervisor/application/'.$hashids->encode($row->id)) }}"><strong style="font-size:11px; color:black;">{{cn($row,'proposal.title','')}}</strong></a></br>
|
|
|
<span style="color:black;">{{cn($row,'proposal.methology','')}}</span>
|
|
|
@php
|
|
|
$proposal =\DB::table('proposal')->where(
|
|
@@ -101,12 +104,12 @@
|
|
|
$department =\DB::table('departments')->where(
|
|
|
'id',$proposal->department
|
|
|
)->first();
|
|
|
- }
|
|
|
+ }
|
|
|
@endphp
|
|
|
@if(isset($department))
|
|
|
<span>.</span>
|
|
|
- <span style="color:black;">
|
|
|
- {{ $department->name }}
|
|
|
+ <span style="color:black;">
|
|
|
+ {{ $department->name }}
|
|
|
</span>
|
|
|
@endif
|
|
|
<span>.</span>
|
|
@@ -134,7 +137,7 @@
|
|
|
|
|
|
@if($row->proposal_status_date)
|
|
|
<br>
|
|
|
- <span style="font-size:11px; font-weight: bold;">
|
|
|
+ <span style="font-size:11px; font-weight: bold;">
|
|
|
{{utc_to_ltz($row->proposal_status_date, 'd M Y g:i A', local_tz($user))}}
|
|
|
</span>
|
|
|
|