St. John Catholic Church
Car Show Silent Auction
2099 N. Hacker Rd.
Howell, MI 48855
|
{{ \Carbon\Carbon::now()->format('m/d/Y') }}
Receipt
|
@foreach($checkout_info_results as $checkout_info_result)
Bidder Number: {{ $checkout_info_result->bidder_assigned_number }}
|
Total: ${{ $checkout_info_result->total_cost }}
|
Name: {{ $checkout_info_result->bidder_fname }} {{ $checkout_info_result->bidder_lname }}
|
Phone Number: {{ $checkout_info_result->bidder_phone }}
|
Address: {{ $checkout_info_result->bidder_addr }}
|
City: {{ $checkout_info_result->bidder_city }}
|
State: {{ $checkout_info_result->bidder_state }}
|
Zip: {{ $checkout_info_result->bidder_zip }}
|
@endforeach
@if($checkout_list_results)
Item Number:
|
Item Description:
|
Winning Bid:
|
@foreach($checkout_list_results as $checkout_list_result)
{{ $checkout_list_result->item_assigned_num }}
|
{{ $checkout_list_result->item_desc }}
|
${{ $checkout_list_result->winning_cost }}
|
@endforeach
@else
No Winning Bids
@endif
PAID
|
@foreach($checkout_final_results as $checkout_final_result)
@if($checkout_final_result->payment_method==1)
CASH
@elseif($checkout_final_result->payment_method==2)
CHECK Number {{ $checkout_final_result->check_number }}
@else
CREDIT {{ $checkout_final_result->cc_transaction }}
@endif
@endforeach
|