@extends('procurement::layouts.master') @section('title','Purchase Orders') @section('content') @include('procurement::components.partials.page_header',['title'=>'Purchase Orders','actionRoute'=>route('procurement.orders.create'),'actionLabel'=>'New PO'])
| PO # | Supplier | Project | Run | Order Date | Purchase Date | Expected | Status | Subtotal | Shipping | Tariff | Total | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $o->po_number }} | {{ $o->supplier->name ?? '—' }} | {{ $o->project->name ?? '—' }} | {{ $o->run->run_number ?? '—' }} | {{ $o->order_date->format('M j, Y') }} | {{ $o->purchase_date?->format('M j, Y') ?? '—' }} | {{ $o->expected_delivery?->format('M j, Y') ?? '—' }} | {{ ucfirst($o->status) }} | ${{ number_format($o->subtotal,2) }} | ${{ number_format($o->shipping_cost,2) }} | ${{ number_format($o->tariff_amount,2) }} | ${{ number_format($o->total_amount,2) }} {{ $o->currency }} | View Edit |
| No purchase orders yet. | ||||||||||||