@extends('layouts.app') @section('title', 'Purchase Orders') @section('content')
| PO # | Supplier | Amount | Status | Date |
|---|---|---|---|---|
| {{ $o->po_number }} | {{ $o->supplier->name ?? '' }} | KES {{ number_format($o->total_amount) }} | {{ ucfirst($o->status) }} | {{ $o->created_at->format('d M') }} |