@include($view_path.'.includes.breadcrumb-primary') View
@include('certificate.includes.buttons')
@include('includes.flash_messages')
@include('includes.validation_error_messages')
@if (isset($data['student']) && $data['student']->count() > 0)
@php($i=1)
@foreach($data['student'] as $student)
| {{__('form_fields.student.fields.faculty')}} | {{ ViewHelper::getFacultyTitle( $student->faculty ) }} | ||||
|---|---|---|---|---|---|
| {{__('form_fields.student.fields.semester')}} | {{ ViewHelper::getSemesterTitle( $student->semester ) }} | ||||
| {{ __('form_fields.student.fields.reg_no') }} | {{ $student->reg_no }} | ||||
| {{__('form_fields.student.fields.name_of_student')}} | {{ $student->first_name.' '.$student->middle_name.' '. $student->last_name }} | ||||
| PC.NO. | {{$student->pc_num}} | ||||
| Issue Date | {{ \Carbon\Carbon::parse($student->date_of_issue)->format('d-M-Y')}} | ||||
| Year | {{$student->year}} | ||||
| GPA | {{$student->gpa}} | ||||
| Scale | {{$student->scale}} | ||||
| REF TEXT |
@if($student->ref_text)
@php($refText = json_decode($student->ref_text))
|
||||
| History |
@php($history = $student->certificateHistory->where('certificate','character')->where('certificate_id',$student->certificate_id))
@if (isset($history) && $history->count() > 0)
@foreach($history as $key => $hist)
{{ $hist->history_type }}-{{ $hist->created_at }}
@if($hist->ref_text)
@php($refText = json_decode($hist->ref_text))
|
||||
| No {{ $panel }} data found. Please Filter {{ $panel }} to show. | |||||