|
@@ -109,15 +109,24 @@
|
|
@foreach($student_proposal as $key=>$row)
|
|
@foreach($student_proposal as $key=>$row)
|
|
<tr>
|
|
<tr>
|
|
<td style="font-size: 11px;">{{++$key}}</td>
|
|
<td style="font-size: 11px;">{{++$key}}</td>
|
|
- <td style="font-size: 11px;">23301</td>
|
|
|
|
|
|
+ <td style="font-size: 11px;">{{$row->student_apply_ref}}</td>
|
|
<td style="font-size: 11px;"><strong>{{ cn($row,'teacher_details.first_name','')}} {{ cn($row,'teacher_details.last_name','')}}</strong><br>
|
|
<td style="font-size: 11px;"><strong>{{ cn($row,'teacher_details.first_name','')}} {{ cn($row,'teacher_details.last_name','')}}</strong><br>
|
|
- <span>designation</span></td>
|
|
|
|
|
|
+ <span>{{cn($row,'teacher_details.designation','')}}</span></td>
|
|
<td style="font-size: 11px;">{{cn($row,'teacher_details.university_name','')}}</br>
|
|
<td style="font-size: 11px;">{{cn($row,'teacher_details.university_name','')}}</br>
|
|
- <span>department</span></td>
|
|
|
|
- <td style="font-size: 11px;"><strong>10{{$key+1}}</strong></td>
|
|
|
|
- <td style="font-size: 11px;">20 March 2023</td>
|
|
|
|
|
|
+ <span>{{cn($row,'teacher_details.department','')}}</span></td>
|
|
|
|
+ <td style="font-size: 11px;">
|
|
|
|
+ @php
|
|
|
|
+ $proposal =\DB::table('proposal')->where('id',$row->proposal_id)->where('student_id',$row->student_id)->first();
|
|
|
|
+ @endphp
|
|
|
|
+ @if($proposal)
|
|
|
|
+ <strong>{{ $proposal->proposal_ref}}</strong>
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ <td style="font-size: 11px;">{{date('d M Y', strtotime($row->created_at))}}</td>
|
|
<td style="text-align:center; font-size: 11px;">Applied</td>
|
|
<td style="text-align:center; font-size: 11px;">Applied</td>
|
|
- <td style="text-align:center; font-size: 11px;"><i class="fa fa-eye"></i></td>
|
|
|
|
|
|
+ <td style="text-align:center; font-size: 11px;">
|
|
|
|
+ <span class="open_modal_page hand" data-url="{{route('modal-get',['name'=>'view_apply_proposal','id'=>$row->id])}}"><i class="fa fa-eye"></i></span>
|
|
|
|
+ </td>
|
|
</tr>
|
|
</tr>
|
|
@endforeach
|
|
@endforeach
|
|
</tbody>
|
|
</tbody>
|