@extends('layouts.app') @section('content')
Checkout
{{ csrf_field() }} @foreach($checkout_info_results as $checkout_info_result) @php $bidnum = $checkout_info_result->idbidders; $totaldue = $checkout_info_result->total_cost; @endphp @endforeach

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 }}
@if($checkout_list_results) @foreach($checkout_list_results as $checkout_list_result) @endforeach
Item Number: Winning Bid:
{{ $checkout_list_result->item_assigned_num }} ${{ $checkout_list_result->winning_cost }}
@else

No Winning Bids

@endif
@endsection