133 lines
5.3 KiB
PHP
133 lines
5.3 KiB
PHP
|
|
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<table cellpadding="0" cellspacing="0" width="560">
|
|
<tbody>
|
|
<tr class="table_headers">
|
|
<td>
|
|
</td>
|
|
<td align="left" class="sectionHeader" id="personalInfo" width="38%">
|
|
Personal Information
|
|
</td>
|
|
<td class="backtoTopText">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table border="1" bordercolor="#eeeeee" cellspacing="0" width="560" >
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td>
|
|
<table border="0" cellpadding="0" cellspacing="0" width="558">
|
|
<tbody>
|
|
<tr class="crTableHeader">
|
|
<td width="25%">
|
|
</td>
|
|
<td class="tranunionHeaderColum" width="25%">
|
|
TransUnion®
|
|
</td>
|
|
<td class="experianHeaderColum" width="25%">
|
|
Experian®
|
|
</td>
|
|
<td class="equifaxHeaderColum" width="25%">
|
|
Equifax®
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
@foreach($personal_infos as $key => $value)
|
|
@php
|
|
|
|
$class = 'crLightTableBackground';
|
|
if($loop->even){
|
|
$class = 'crTableBackground';
|
|
}
|
|
@endphp
|
|
<table border="0" cellpadding="0" cellspacing="0" width="558">
|
|
<tbody>
|
|
<tr class="{{$class}}" height="7">
|
|
<td colspan="4">
|
|
</td>
|
|
</tr>
|
|
<tr class="{{$class}}">
|
|
<td nowrap="" width="25%">
|
|
<span class="Rsmall">
|
|
<b>
|
|
{{$value['title']}}:
|
|
</b>
|
|
</span>
|
|
</td>
|
|
@if(getCreditReportValuesExistOrNot($value,$key))
|
|
<td align="Left" valign="top" width="75%" colspan="3">
|
|
<span class="Rsmall">
|
|
None Reported
|
|
</span>
|
|
</td>
|
|
@else
|
|
<td class="{{$class}}" width="25%">
|
|
<span class="Rsmall">
|
|
|
|
@foreach($value['data']['TransUnion'] as $transUnion)
|
|
<span class="Rsmall">
|
|
{{ getCreditReportPersonalInfo($transUnion,$key) }}
|
|
</span>
|
|
<br/>
|
|
@endforeach
|
|
|
|
|
|
</span>
|
|
</td>
|
|
<td class="{{$class}}" width="25%">
|
|
|
|
@foreach($value['data']['Experian'] as $experian)
|
|
|
|
{{ getCreditReportPersonalInfo($experian,$key) }}
|
|
<br/>
|
|
@endforeach
|
|
|
|
|
|
</td>
|
|
<td class="{{$class}}" width="25%">
|
|
@foreach($value['data']['Equifax'] as $equifax)
|
|
|
|
{{ getCreditReportPersonalInfo($equifax,$key) }}
|
|
|
|
@endforeach
|
|
|
|
<br/>
|
|
</td>
|
|
|
|
@endif
|
|
</tr>
|
|
<tr class="{{$class}}" height="7">
|
|
<td colspan="4">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
@endforeach
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|