.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
composer.lock.bak
package.json
phpunit.xml
readme.md
server.php
webpack.mix.js
58 lines
1.4 KiB
PHP
58 lines
1.4 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>
|
|
Item List
|
|
</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
@if($itemlist_results)
|
|
<table align='center' class='table table-striped table-condensed table-hover table-bordered'>
|
|
<tr>
|
|
<th>
|
|
Number:
|
|
</th>
|
|
<th>
|
|
Description:
|
|
</th>
|
|
<th>
|
|
Est. Value:
|
|
</th>
|
|
<th>
|
|
Min Bid:
|
|
</th>
|
|
</tr>
|
|
@foreach($itemlist_results as $itemlist_result)
|
|
<tr>
|
|
<td>
|
|
{{ $itemlist_result->item_assigned_num }}
|
|
</td>
|
|
<td>
|
|
{{ $itemlist_result->item_desc }}
|
|
</td>
|
|
<td>
|
|
${{ $itemlist_result->item_est_value }}
|
|
</td>
|
|
<td>
|
|
${{ $itemlist_result->item_min_bid }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
@else
|
|
<h3>
|
|
No Items
|
|
</h3>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|