@extends('layouts.bootstrap') @section('title', 'Manage Bids - ' . $tender->name) @section('content')

Manage Bids

{{ $tender->name }}

{{ $tender->reference_number }}

@if($tender->description)

{{ $tender->description }}

@endif
{{ $tender->getTotalProductsCount() }}
Products
৳{{ number_format($tender->budget, 0) }}
Budget
@if($bids->count() > 0)

{{ $bids->count() }}

Total Bids

{{ $bids->first()->getFormattedBidValue() }}

Lowest Bid

{{ $bids->last()->getFormattedBidValue() }}

Highest Bid

{{ $bids->first()->company_name }}

Leading Bidder
@endif
Bid Details @if($bids->count() > 0) {{ $bids->count() }} @endif
@if($bids->count() > 0) Sorted by bid value (lowest to highest) @endif
@if($bids->count() > 0)
@foreach($bids as $bid) @endforeach
Position Company Name Bid Value Submitted Date Notes Actions
#{{ $bid->position }} @if($bid->position == 1) @endif {{ $bid->company_name }} {{ $bid->getFormattedBidValue() }} {{ $bid->submitted_at->format('M d, Y') }}
{{ $bid->submitted_at->format('h:i A') }}
@if($bid->notes) {{ Str::limit($bid->notes, 50) }} @else - @endif
@csrf @method('DELETE')
@else

No Bids Yet

This tender hasn't received any bids yet.

Add First Bid
@endif
@endsection