Files
.well-known
app
bootstrap
config
database
public
resources
assets
lang
views
auth
layouts
vendor
bidderlist.blade.php
bidders.blade.php
checkout.blade.php
checkout_complete.blade.php
checkout_complete_list.blade.php
checkout_select_form.blade.php
editwinners.blade.php
finaltally.blade.php
home.blade.php
itemlist.blade.php
items.blade.php
receiptpdf.blade.php
receiptpdf2.blade.php
reprint_receipt_form.blade.php
wallboard.blade.php
winnerlist.blade.php
winners.blade.php
winnersbyitem.blade.php
winnertotal.blade.php
winnertotalform.blade.php
winningbidderlist.blade.php
routes
stats
storage
tests
.env.example
.ftpconfig
.gitattributes
.gitignore
.htaccess.bak
artisan
composer.json
composer.lock
package.json
phpunit.xml
readme.md
server.php
webpack.mix.js
silent-auction/resources/views/finaltally.blade.php
2018-06-11 13:43:21 -04:00

92 lines
2.3 KiB
PHP

@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="panel panel-default">
<div class="panel-heading">
Total for All Bidders
</div>
<div class="panel-body">
@if($finaltally_results)
<table align='center' class='table table-striped table-condensed table-hover table-bordered'>
<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>
</tr>
@foreach($finaltally_results as $finaltally_result)
<tr>
<td>
{{ $finaltally_result->bidder_assigned_number }}
<td>
{{ $finaltally_result->bidder_lname }}
</td>
<td>
{{ $finaltally_result->bidder_fname }}
</td>
<td>
{{ $finaltally_result->bidder_addr }}
</td>
<td>
{{ $finaltally_result->bidder_city }}
</td>
<td>
{{ $finaltally_result->bidder_state }}
</td>
<td>
{{ $finaltally_result->bidder_zip }}
</td>
<td>
{{ $finaltally_result->bidder_phone }}
</td>
<td>
{{ $finaltally_result->bidder_email }}
</td>
<td>
${{ $finaltally_result->total_due }}
</td>
</tr>
@endforeach
</table>
@else
<h3>
No Bidders
</h3>
@endif
</div>
</div>
</div>
</div>
</div>
@endsection