{{ $data['student']->first_name.' '.
$data['student']->middle_name.' '.$data['student']->last_name }}
@if($data['student']->faculty !="")
Faculty:
{{ ViewHelper::getFacultyTitle( $data['student']->faculty ) }}
@endif
@if($data['student']->semester != "")
Semester :
{{ ViewHelper::getSemesterTitle( $data['student']->semester ) }}
@endif
@if($data['student']->batch !="")
Batch:
{{ ViewHelper::getStudentBatchId( $data['student']->batch ) }}
@endif
@if($data['student']->reg_no != "")
Reg. No.:
{{ $data['student']->reg_no }}
@endif
@if($data['student']->reg_date !="")
Reg. Date :
{{ \Carbon\Carbon::parse($data['student']->reg_date)->format('d/m/Y')}}
@endif
@if($data['student']->university_reg != "")
Univ.Reg.:
{{ $data['student']->university_reg }}
@endif
@if($data['student']->date_of_birth != "")
DOB :
{{ \Carbon\Carbon::parse($data['student']->date_of_birth)->format('d/m/Y')}}
@endif
@if($data['student']->gender != "")
Gender :
{{ $data['student']->gender }}
@endif
@if($data['student']->blood_group != "")
Blood Group :
{{ $data['student']->blood_group }}
@endif
@if($data['student']->religion !="")
Religion:
{{ $data['student']->religion }}
@endif
@if($data['student']->caste !="")
Caste :
{{ $data['student']->caste }}
@endif
@if($data['student']->nationality)
Nationality :
{{ $data['student']->nationality }}
@endif
@if($data['student']->mother_tongue !="")
Mother Tongue:
{{ $data['student']->mother_tongue }}
@endif
@if($data['student']->email !="")
E-mail :
{{ $data['student']->email }}
@endif
@if($data['student']->mobile_1 !="")
Mobile No :
{{ $data['student']->mobile_1.','.$data['student']->mobile_2 }}
@endif