@extends('layouts.print') @section('title', $po->po_number) @section('kind', 'Purchase order') @section('number', $po->po_number) @section('status', title_case_words($po->status)) @section('content')
| Item | Qty | Received | Unit cost | Amount |
|---|---|---|---|---|
|
{{ $item->description }}
@if ($item->product) {{ $item->product->sku }} @endif
|
{{ rtrim(rtrim(number_format($item->quantity, 2), '0'), '.') }} | {{ rtrim(rtrim(number_format($item->quantity_received, 2), '0'), '.') }} | {{ money($item->unit_cost) }} | {{ money($item->amount) }} |
| No items. | ||||
| Subtotal | {{ money($po->subtotal) }} |
| Tax | {{ money($po->tax_amount) }} |
| Total | {{ money($po->total) }} |
{{ $po->notes }}