initial commit
This commit is contained in:
78
resources/views/partials/credit_report/summary.blade.php
Normal file
78
resources/views/partials/credit_report/summary.blade.php
Normal file
@@ -0,0 +1,78 @@
|
||||
|
||||
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<table cellspacing="0" width="558">
|
||||
<tbody>
|
||||
<tr class="table_headers">
|
||||
<td class="sectionHeader" id="Summary">
|
||||
Summary
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="558">
|
||||
<tbody>
|
||||
<tr class="crTableHeader">
|
||||
<td class="crTableHeader" width="25%">
|
||||
</td>
|
||||
<td class="tranunionHeaderColum">
|
||||
TransUnion®
|
||||
</td>
|
||||
<td class="experianHeaderColum">
|
||||
Experian®
|
||||
</td>
|
||||
<td class="equifaxHeaderColum">
|
||||
Equifax®
|
||||
</td>
|
||||
</tr>
|
||||
@foreach($summary_info_data_set as $summary_info_data)
|
||||
@php
|
||||
$class = 'crLightTableBackground';
|
||||
if($loop->even){
|
||||
$class = 'crTableBackground';
|
||||
}
|
||||
@endphp
|
||||
<tr class="{{$class}}">
|
||||
<td class="{{$class}}" valign="bottom">
|
||||
<span class="Rsmall">
|
||||
<b>
|
||||
{{$summary_info_data['title']}}:
|
||||
</b>
|
||||
</span>
|
||||
</td>
|
||||
<td class="{{$class}}" valign="bottom">
|
||||
<span class="Rsmall">
|
||||
{{$summary_info_data['TransUnion']}}
|
||||
</span>
|
||||
</td>
|
||||
<td class="{{$class}}" valign="bottom">
|
||||
<span class="Rsmall">
|
||||
{{$summary_info_data['Experian']}}
|
||||
</span>
|
||||
</td>
|
||||
<td class="{{$class}}" valign="bottom">
|
||||
<span class="Rsmall">
|
||||
{{$summary_info_data['Equifax']}}
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user