forked from TFMM/silent-auction
feat: expand bidderlist with contact info
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user