forked from TFMM/silent-auction
feat: update bidderlist columns to show full contact details
This commit is contained in:
@@ -17,24 +17,32 @@
|
|||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table table-vcenter card-table">
|
<table class="table table-vcenter card-table text-nowrap">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>#</th>
|
<th>#</th>
|
||||||
<th>Name</th>
|
<th>Last Name</th>
|
||||||
|
<th>First Name</th>
|
||||||
|
<th>Address</th>
|
||||||
|
<th>City</th>
|
||||||
|
<th>State</th>
|
||||||
|
<th>Zip</th>
|
||||||
<th>Phone</th>
|
<th>Phone</th>
|
||||||
<th>Email</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_fname }} {{ $bidder->bidder_lname }}</td>
|
<td>{{ $bidder->bidder_lname }}</td>
|
||||||
<td>{{ $bidder->bidder_phone }}</td>
|
<td>{{ $bidder->bidder_fname }}</td>
|
||||||
|
<td>{{ $bidder->bidder_addr }}</td>
|
||||||
|
<td>{{ $bidder->bidder_city }}</td>
|
||||||
|
<td>{{ $bidder->bidder_state }}</td>
|
||||||
|
<td>{{ $bidder->bidder_zip }}</td>
|
||||||
|
<td>{{ \App\Helpers\PhoneHelper::format($bidder->bidder_phone) }}</td>
|
||||||
<td>{{ $bidder->bidder_email }}</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