@extends('layouts.app') @section('title', 'Request '.$requestItem->request_number) @section('page_title', 'Request '.$requestItem->request_number) @section('content')
{{ $requestItem->description ?: 'No description provided.' }}
Department: {{ $requestItem->department?->name ?? '-' }} | Required: {{ $requestItem->required_date?->format('M d, Y') ?? '-' }} | Priority: {{ ucfirst($requestItem->priority) }}
Status: {{ str_replace('_',' ', $requestItem->status) }}
@if($requestItem->rejection_reason)Estimated request value
Admin will add supplier quotations, approve, create PO, receive goods, and record payment.
| Item | Description | Qty | Unit Price | Total |
|---|---|---|---|---|
| {{ $item->item_name }} | {{ $item->description }} | {{ $item->quantity }} {{ $item->unit }} | ₦{{ number_format($item->estimated_unit_price,2) }} | ₦{{ number_format($item->estimated_total,2) }} |
| Quotation | Supplier | Total | Status |
|---|---|---|---|
| {{ $quotation->quotation_number }} | {{ $quotation->supplier?->company_name }} | ₦{{ number_format($quotation->quoted_total,2) }} | {{ $quotation->status }} |
| No quotation yet. | |||
| PO | Supplier | Total | Status |
|---|---|---|---|
| {{ $po->po_number }} | {{ $po->supplier?->company_name }} | ₦{{ number_format($po->total_amount,2) }} | {{ str_replace('_',' ', $po->status) }} |
| No purchase order yet. | |||