diff --git a/resources/views/checkout_complete.blade.php b/resources/views/checkout_complete.blade.php index 077cb45..c8ae987 100644 --- a/resources/views/checkout_complete.blade.php +++ b/resources/views/checkout_complete.blade.php @@ -14,13 +14,78 @@
The checkout has been successfully processed.
- Print Receipt - Save PDF Receipt - Back to Dashboard + +Name: {{ $info->bidder_fname }} {{ $info->bidder_lname }}
+Bidder Number: {{ $info->bidder_assigned_number }}
+Total Paid: ${{ number_format($info->total_cost, 2) }}
+Payment Method: + @if($payment_method == 1) Cash + @elseif($payment_method == 2) Check ({{ $check_number }}) + @else Credit Card ({{ $cc_transaction }}) + @endif +
+| Item # | +Description | +Amount | +
|---|---|---|
| {{ $item->item_assigned_num }} | +{{ $item->item_desc }} | +${{ number_format($item->winning_cost, 2) }} | +
| Total | +${{ number_format($info->total_cost ?? 0, 2) }} | +|