@extends('tablar::page') @section('content')
@foreach($checkout_info_results as $info)
{{ csrf_field() }}

Winning Items for {{ $info->bidder_fname }} {{ $info->bidder_lname }} (Bidder #{{ $info->bidder_assigned_number }})

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