{{ $tender->name }}

Reference: {{ $tender->reference_number }}
@if($tender->description)
{{ $tender->description }}
@endif
Total Budget: ৳ {{ number_format($tender->budget, 2) }}

Tender Details

Status:
{{ $tender->getStatusLabel() }}
@if($tender->deadline)
Deadline:
{{ $tender->deadline->format('F j, Y') }}
@endif @if($tender->vat_tax_percentage)
VAT/Tax Rate:
{{ $tender->vat_tax_percentage }}%
@endif @if($tender->bidding_percentage)
Bidding Rate:
{{ $tender->bidding_percentage }}%
@endif

Tender Products ({{ $products->count() }} items)

@if($products->count() > 0) @foreach($products as $product) @endforeach
Product Name Market Price Inc VAT/Tax Price Bidding Price Bidding Total Quantity
{{ $product->name }} @if($product->category)
{{ $product->category->name }} @endif @if($product->measurement_unit)
Unit: {{ $product->measurement_unit }} @endif
{{ $product->getFormattedMarketPriceBdt() }} {{ $product->getFormattedIncVatTaxPriceBdt() }} @if($tender->vat_tax_percentage)
({{ $tender->vat_tax_percentage }}% VAT) @endif
{{ $product->getFormattedBiddingPriceBdt() }} {{ $product->getFormattedTotalBiddingPriceBdt() }} {{ $product->quantity_required ?? 'N/A' }}
@else

No products found for this tender.

@endif
@if($products->count() > 0)

Summary Totals

Total Market Price:
৳ {{ number_format($totalMarketPrice, 2) }}
Total Inc VAT/Tax Price:
৳ {{ number_format($totalIncVatTaxPrice, 2) }}
Total Bidding Price:
৳ {{ number_format($totalBiddingPrice, 2) }}
@endif