@extends('tablar::page') @section('content')
The checkout has been successfully processed.
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) }} | |