@extends('layouts.app') @section('title', 'Contract Award Details') @section('content')

Award Details - #{{ $award->id }}

Procurement Title: {{ $award->procurement->title }}

Winning Bidder: {{ $award->bid->supplier->name }}

Award Date: {{ $award->award_date->format('d-M-Y') }}

Contract Value: {{ number_format($award->contract_value, 2) }} {{ $award->currency }}

Status: {{ $award->status }}

Awarded By: {{ $award->awardedBy->name }}

Justification:

{{ $award->justification ?? 'N/A' }}


Award Notification

{{ $award->notification_details }}

Related Documents

@endsection