inital commit
This commit is contained in:
83
resources/views/partials/credit_report/inquiries.blade.php
Normal file
83
resources/views/partials/credit_report/inquiries.blade.php
Normal file
@@ -0,0 +1,83 @@
|
||||
|
||||
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<table cellspacing="0" width="558">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="font-family:Arial; font-size: 12px; font-weight:bold;">
|
||||
Inquiries
|
||||
</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>
|
||||
<td class="inquiriesHeader" colspan="1" width="255">
|
||||
<b>
|
||||
Creditor Name
|
||||
</b>
|
||||
<br/>
|
||||
</td>
|
||||
<td class="inquiriesHeader" colspan="1" width="190">
|
||||
<b>
|
||||
Date of inquiry
|
||||
</b>
|
||||
<br/>
|
||||
</td>
|
||||
<td class="inquiriesHeader" colspan="1" width="110">
|
||||
<b>
|
||||
Credit Bureau
|
||||
</b>
|
||||
<br/>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
@foreach($inquiries_data_set as $inquiries_data)
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="558">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="3">
|
||||
</td>
|
||||
<td class="crLightTableBackground" width="255">
|
||||
{{$inquiries_data['Inquiry']['subscriberName']}}
|
||||
</td>
|
||||
<td class="crLightTableBackground" width="190">
|
||||
{{ getStringToDateTime($inquiries_data['Inquiry']['inquiryDate'],'m/d/Y')}}
|
||||
</td>
|
||||
<td class="crLightTableBackground" width="110">
|
||||
{{$inquiries_data['Inquiry']['bureau']}}
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@endforeach
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user