@extends('layouts.app') @section('title', 'Purchase Order Details') @section('content')
| Product | Quantity | Unit Price | Total |
|---|---|---|---|
|
{{ $item->product->name }}
{{ $item->product->sku }}
|
{{ number_format($item->quantity, 2) }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->total_price, 2) }} |
| Grand Total | ${{ number_format($purchaseOrder->total_amount, 2) }} | ||
{{ $purchaseOrder->notes ?? 'None' }}