{{-- resources/views/purchases/orders/index.blade.php --}} @extends('layouts.app') @section('title', 'Purchase Orders') @section('page_title', 'Purchase Orders') @section('page_subtitle', 'Manage purchase orders') @section('content') {{-- Stats --}}
No purchase orders found
Create First PO| PO Number | Supplier | Date | Expected | Total | Balance | Status | Payment | |
|---|---|---|---|---|---|---|---|---|
| {{ $order->po_number }} |
{{ $order->supplier?->name }}
|
{{ $order->order_date->format('d M Y') }} | {{ $order->expected_date?->format('d M Y') ?? '—' }} | {{ $order->currency }} {{ number_format($order->total_amount, 2) }} | @if($order->balance_due > 0) {{ $order->currency }} {{ number_format($order->balance_due, 2) }} @else Paid @endif | {{ str_replace('_', ' ', $order->status) }} | {{ $order->payment_status }} | View → |