From 2935d846716f963810a469344d207d48062205db Mon Sep 17 00:00:00 2001 From: Russ Long Date: Sat, 2 May 2026 15:51:39 -0400 Subject: [PATCH] fix checkout route by aligning view fields with controller expectations --- resources/views/checkout.blade.php | 84 +++++++++++++++---- .../views/checkout_select_form.blade.php | 2 +- 2 files changed, 68 insertions(+), 18 deletions(-) diff --git a/resources/views/checkout.blade.php b/resources/views/checkout.blade.php index 2be3a66..3e99dce 100644 --- a/resources/views/checkout.blade.php +++ b/resources/views/checkout.blade.php @@ -16,33 +16,67 @@
+ @foreach($checkout_info_results as $info)
{{ csrf_field() }} - + + -

Winning Items for {{ $bidder->bidder_fname }} {{ $bidder->bidder_lname }}

-
    - @foreach($winnings as $item) -
  • - {{ $item->items->item_desc }} - ${{ number_format($item->winning_cost, 2) }} -
  • - @endforeach -
+

Winning Items for {{ $info->bidder_fname }} {{ $info->bidder_lname }} (Bidder #{{ $info->bidder_assigned_number }})

+ +
+ + + + + + + + + + @foreach($checkout_list_results as $item) + + + + + + @endforeach + + + + + + + +
Item #DescriptionAmount
{{ $item->item_assigned_num }}{{ $item->item_desc }}${{ number_format($item->winning_cost, 2) }}
Total Due${{ number_format($info->total_cost, 2) }}
+
- + {!! \App\Helpers\PaymentMethodSelectList::paymentShowMethods() !!}
+ + + + -
- +
+ + Cancel and Start Over
+ @endforeach
@@ -50,6 +84,22 @@
@endsection -@include('components.tomselect') + @push('js') + @endpush diff --git a/resources/views/checkout_select_form.blade.php b/resources/views/checkout_select_form.blade.php index 6948864..64b70b2 100644 --- a/resources/views/checkout_select_form.blade.php +++ b/resources/views/checkout_select_form.blade.php @@ -20,7 +20,7 @@ {{ csrf_field() }}
- @foreach($bidders as $bidder) @endforeach