forked from TFMM/silent-auction
73 lines
3.4 KiB
PHP
73 lines
3.4 KiB
PHP
@extends('tablar::page')
|
|
|
|
@section('content')
|
|
<div class="page-header d-print-none">
|
|
<div class="container-xl">
|
|
<div class="row g-2 align-items-center">
|
|
<div class="col">
|
|
<h2 class="page-title">Checkout Complete List</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="page-body">
|
|
<div class="container-xl">
|
|
<div class="row row-cards">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="table-responsive">
|
|
<table class="table table-vcenter card-table text-nowrap">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Last Name</th>
|
|
<th>First Name</th>
|
|
<th>Address</th>
|
|
<th>City</th>
|
|
<th>State</th>
|
|
<th>Zip</th>
|
|
<th>Phone</th>
|
|
<th>Email</th>
|
|
<th>Total</th>
|
|
<th>Payment Method</th>
|
|
<th>Items Won</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($checkout_complete_results as $c)
|
|
<tr>
|
|
<td>{{ $c->bidder_assigned_number }}</td>
|
|
<td>{{ $c->bidder_lname }}</td>
|
|
<td>{{ $c->bidder_fname }}</td>
|
|
<td>{{ $c->bidder_addr }}</td>
|
|
<td>{{ $c->bidder_city }}</td>
|
|
<td>{{ $c->bidder_state }}</td>
|
|
<td>{{ $c->bidder_zip }}</td>
|
|
<td>{{ \App\Helpers\PhoneHelper::format($c->bidder_phone) }}</td>
|
|
<td>{{ $c->bidder_email }}</td>
|
|
<td>${{ number_format($c->winnertotal, 2) }}</td>
|
|
<td>
|
|
@if($c->payment_method == 1) Cash
|
|
@elseif($c->payment_method == 2) Check ({{ $c->check_number }})
|
|
@else Credit ({{ $c->cc_transaction }})
|
|
@endif
|
|
</td>
|
|
<td>
|
|
@foreach(\App\Models\WinningBids::with('items')->where('winning_bidder_num', $c->bidder_num)->get() as $bid)
|
|
<strong>#{{ $bid->items->item_assigned_num ?? '?' }}</strong> - {{ $bid->items->item_desc ?? 'N/A' }}<br>
|
|
@endforeach
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
@push('js')
|
|
@endpush
|