@extends('layouts.app') @section('title', 'Contract Award Details') @section('content')
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_details }}