Files
.well-known
app
bootstrap
config
database
public
resources
assets
lang
views
auth
layouts
vendor
awardcategories.blade.php
bidderlist.blade.php
bidders.blade.php
carshowscores.blade.php
carshowwinners.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
judges.blade.php
judgingentry.blade.php
pcentry.blade.php
receiptpdf.blade.php
receiptpdf2.blade.php
reprint_receipt_form.blade.php
showcarlist.blade.php
showcars.blade.php
vehicletypes.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/bidderlist.blade.php
2018-06-11 13:43:21 -04:00

88 lines
2.1 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">
<h3>
Bidder List
</h3>
</div>
<div class="panel-body">
@if($bidderlist_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>
</tr>
@foreach($bidderlist_results as $bidderlist_result)
<tr>
<td>
{{ $bidderlist_result->bidder_assigned_number }}
</td>
<td>
{{ $bidderlist_result->bidder_lname }}
</td>
<td>
{{ $bidderlist_result->bidder_fname }}
</td>
<td>
{{ $bidderlist_result->bidder_addr }}
</td>
<td>
{{ $bidderlist_result->bidder_city }}
</td>
<td>
{{ $bidderlist_result->bidder_state }}
</td>
<td>
{{ $bidderlist_result->bidder_zip }}
</td>
<td>
{{ $bidderlist_result->bidder_phone }}
</td>
<td>
{{ $bidderlist_result->bidder_email }}
</td>
</tr>
@endforeach
</table>
@else
<h3>
No Bidders
</h3>
@endif
</div>
</div>
</div>
</div>
</div>
@endsection