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