|
@@ -19,25 +19,36 @@
|
|
|
<tr>
|
|
|
<td style="font-size: 11px;">{{$key+1}}</td>
|
|
|
<td>
|
|
|
- <div style="font-size: 12px; font-weight: 600; color: black; text-transform: capitalize;">
|
|
|
- <span>{{cn($row,'student_details.first_name','')}} {{cn($row,'student_details.last_name','')}}</span>
|
|
|
- </div>
|
|
|
- <div style="font-size: 11.5px;">
|
|
|
- <a href="" class="" style="color: #868e96;"><span>Ref : {{$row->student_apply_ref ?? "N/A"}} </span></a>
|
|
|
- </div>
|
|
|
- <div style="font-size: 11.5px;">
|
|
|
- <span style="color: #868e96;">Applied : {{utc_to_ltz($row->submitted_date, 'd M Y g:i A', local_tz($user))}}</span>
|
|
|
+ <div style="display:flex;">
|
|
|
+ @if($row->student_details->nationality)
|
|
|
+ <img class="img-responsive listFlag" style="border-radius: 2px; padding: 0px;height: 35px; width: 35px;" src="{{ asset('/assets/img/flags/4x3').'/'.strtolower(cn($row,'student_details.country_name.iso_3166_2','')).'.svg' }}" alt="Flag" data-toggle="tooltip" title="" data-placement="top">
|
|
|
+ @endif
|
|
|
+ <div class="alert" style="background-color:white; padding: 3px 7px; margin-bottom: 0px;">
|
|
|
+ <div style="font-size: 12px; font-weight: 600; color: black; text-transform: capitalize;">
|
|
|
+ <span>{{cn($row,'student_details.first_name','')}} {{cn($row,'student_details.last_name','')}}</span>
|
|
|
+ </div>
|
|
|
+ <div style="font-size: 11.5px;">
|
|
|
+ <a href="" class="" style="color: #868e96;"><span>Ref : {{$row->student_apply_ref ?? "N/A"}} </span></a>
|
|
|
+ </div>
|
|
|
+ <div style="font-size: 11.5px;">
|
|
|
+ <span style="color: #868e96;">Applied : {{utc_to_ltz($row->submitted_date, 'd M Y g:i A', local_tz($user))}}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td style="font-size: 11.5px;">
|
|
|
- <div style="font-size: 11.5px; font-weight: 600; display:block;">
|
|
|
- <span style="color: black;">{{cn($row,'institutes.institution','')}}</span>
|
|
|
- </div>
|
|
|
- <div style="font-size: 11.5px;">
|
|
|
- <span style="color: black;">Passing Year : {{cn($row,'institutes.passing_year','N/A')}} </span>
|
|
|
- </div>
|
|
|
- <div class="mt-1" style="font-size: 11.5px;">
|
|
|
- <span class="label_badge_gpa">{{cn($row,'institutes.result','')}} (GPA)</span>
|
|
|
+ <div style="display:flex;">
|
|
|
+ <div class="alert" style="background-color:white; padding: 3px 7px; margin-bottom: 0px;">
|
|
|
+ <div style="font-size: 11.5px; font-weight: 600; display:block;">
|
|
|
+ <span style="color: black;">{{cn($row,'institutes.institution','')}}</span>
|
|
|
+ </div>
|
|
|
+ <div style="font-size: 11.5px;">
|
|
|
+ <span style="color: black;">Passing Year : {{cn($row,'institutes.passing_year','N/A')}} </span>
|
|
|
+ </div>
|
|
|
+ <div class="mt-1" style="font-size: 11.5px;">
|
|
|
+ <span class="label_badge_gpa">{{cn($row,'institutes.result','')}} (GPA)</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td style="font-size: 11.5px; text-align:center; color: black;">{{cn($row,'scores.test_name','N/A')}} - {{cn($row,'scores.overall_score','')}}
|