diff --git a/resources/views/checkout_complete_list.blade.php b/resources/views/checkout_complete_list.blade.php
index 9413767..5f5b363 100644
--- a/resources/views/checkout_complete_list.blade.php
+++ b/resources/views/checkout_complete_list.blade.php
@@ -21,6 +21,7 @@
| Bidder # |
Name |
+ Items Won |
Total |
Payment |
@@ -30,6 +31,11 @@
| {{ $c->bidder_assigned_number }} |
{{ $c->bidder_fname }} {{ $c->bidder_lname }} |
+
+ @foreach(\App\Models\WinningBids::with('items')->where('winning_bidder_num', $c->bidder_num)->get() as $bid)
+ {{ $bid->items->item_desc ?? 'N/A' }}
+ @endforeach
+ |
${{ number_format($c->winnertotal, 2) }} |
{{ $c->payment_method == 1 ? 'Cash' : ($c->payment_method == 2 ? 'Check' : 'Credit') }} |