fix: restore fallback verification button and error handling for North checkout #7

Merged
rlong merged 5 commits from feature/tablar-theme into master 2026-05-03 07:06:20 -04:00
Showing only changes of commit ebfbee5296 - Show all commits
+14 -6
View File
@@ -17,24 +17,32 @@
<div class="col-12">
<div class="card">
<div class="table-responsive">
<table class="table table-vcenter card-table">
<table class="table table-vcenter card-table text-nowrap">
<thead>
<tr>
<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>Email</th>
<th>Address</th>
</tr>
</thead>
<tbody>
@foreach($bidderlist_results as $bidder)
<tr>
<td>{{ $bidder->bidder_assigned_number }}</td>
<td>{{ $bidder->bidder_fname }} {{ $bidder->bidder_lname }}</td>
<td>{{ $bidder->bidder_phone }}</td>
<td>{{ $bidder->bidder_lname }}</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_addr }}, {{ $bidder->bidder_city }}</td>
</tr>
@endforeach
</tbody>