feat: expand bidderlist with contact info

This commit is contained in:
2026-05-01 15:23:26 -04:00
parent 2e5454484f
commit 92da95bdff
+8 -4
View File
@@ -21,16 +21,20 @@
<thead>
<tr>
<th>#</th>
<th>Last Name</th>
<th>First Name</th>
<th>Name</th>
<th>Phone</th>
<th>Email</th>
<th>Address</th>
</tr>
</thead>
<tbody>
@foreach($bidderlist_results as $bidder)
<tr>
<td>{{ $bidder->bidder_assigned_number }}</td>
<td>{{ $bidder->bidder_lname }}</td>
<td>{{ $bidder->bidder_fname }}</td>
<td>{{ $bidder->bidder_fname }} {{ $bidder->bidder_lname }}</td>
<td>{{ $bidder->bidder_phone }}</td>
<td>{{ $bidder->bidder_email }}</td>
<td>{{ $bidder->bidder_addr }}, {{ $bidder->bidder_city }}</td>
</tr>
@endforeach
</tbody>