ending contracts
This commit is contained in:
@@ -26,7 +26,11 @@
|
|||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
Lowest Bid: {{ number_format($contract['lowestbid'], 2, '.', ',') }}
|
@if($contract['lowestbid'] == 'No Bids Placed.')
|
||||||
|
No Bids Placed.<br>
|
||||||
|
@else
|
||||||
|
Lowest Bid: {{ number_format($contract['lowestbid'], 2, '.', ',') }}<br>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
@foreach($contract['bids'] as $bid)
|
@foreach($contract['bids'] as $bid)
|
||||||
|
|||||||
@@ -28,8 +28,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
@if($contract['lowestbid'] == 'No Bids Placed.')
|
||||||
|
No Bids Placed.<br>
|
||||||
|
No Corproation has placed a bid.<br>
|
||||||
|
@else
|
||||||
Lowest Bid: {{ number_format($contract['lowestbid'], 2, '.', ',') }}<br>
|
Lowest Bid: {{ number_format($contract['lowestbid'], 2, '.', ',') }}<br>
|
||||||
Lowest Bid Corp: {{ $contract['lowestcorp'] }}<br>
|
Lowest Bid Corp: {{ $contract['lowestcorp'] }}<br>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<!-- Count the number of bids for the current contract -->
|
<!-- Count the number of bids for the current contract -->
|
||||||
|
|||||||
Reference in New Issue
Block a user