Files
Credit-Zombies/resources/views/partials/credit_report/creditor_contact.blade.php
2026-06-24 18:29:01 +06:00

92 lines
3.8 KiB
PHP

<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;">
Creditor Contacts
</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" valign="top" width="3">
</td>
<td class="inquiriesHeader" colspan="1" width="255">
<b>
Creditor Name
</b>
<br/>
</td>
<td class="inquiriesHeader" colspan="1" width="190">
<b>
Address
</b>
</td>
<td class="inquiriesHeader" colspan="1" width="110">
<b>
Phone Number
</b>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="1" bordercolor="#eeeeee" cellpadding="0" cellspacing="0" width="560" >
<tbody>
<tr>
<td>
@foreach($creditor_contact_data_set as $creditor_contact_data)
@php
$class = 'crLightTableBackground';
if($loop->even){
$class = 'crTableBackground';
}
@endphp
<table border="0" cellpadding="0" cellspacing="0" width="558">
<tbody>
<tr>
<td class="{{$class}}" valign="top" width="3">
</td>
<td class="{{$class}}" valign="top" width="255">
{{$creditor_contact_data['name']}}
</td>
<td class="{{$class}}" valign="top" width="190">
{{$creditor_contact_data['CreditAddress']['unparsedStreet']}}
<br/>
{{$creditor_contact_data['CreditAddress']['city'].' '.$creditor_contact_data['CreditAddress']['stateCode'].$creditor_contact_data['CreditAddress']['postalCode']}}
<br/>
</td>
<td class="{{$class}}" valign="top" width="110">
{{ preg_replace("/^(\w{3})(\w{3})(\w{4})$/", "$1-$2-$3", $creditor_contact_data['telephone'])}}
</td>
</tr>
</tbody>
</table>
@endforeach
</td>
</tr>
</tbody>
</table>