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> <thead>
<tr> <tr>
<th>#</th> <th>#</th>
<th>Last Name</th> <th>Name</th>
<th>First Name</th> <th>Phone</th>
<th>Email</th>
<th>Address</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach($bidderlist_results as $bidder) @foreach($bidderlist_results as $bidder)
<tr> <tr>
<td>{{ $bidder->bidder_assigned_number }}</td> <td>{{ $bidder->bidder_assigned_number }}</td>
<td>{{ $bidder->bidder_lname }}</td> <td>{{ $bidder->bidder_fname }} {{ $bidder->bidder_lname }}</td>
<td>{{ $bidder->bidder_fname }}</td> <td>{{ $bidder->bidder_phone }}</td>
<td>{{ $bidder->bidder_email }}</td>
<td>{{ $bidder->bidder_addr }}, {{ $bidder->bidder_city }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>