@extends('tablar::page') @section('content')

Success!

The checkout has been successfully processed.

@foreach($checkout_info_results as $info)

Bidder Information

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

@endforeach

Items Won

@foreach($checkout_list_results as $item) @endforeach
Item # Description Amount
{{ $item->item_assigned_num }} {{ $item->item_desc }} ${{ number_format($item->winning_cost, 2) }}
Total ${{ number_format($info->total_cost ?? 0, 2) }}
@endsection @push('js') @endpush