@extends('layouts.dashboard.superadminapp') @section('title', 'Purchase Order List') @section('styles') @endsection @section('content')
| Purchase Order No. | Date | Vendor Name | Quotation No. | Grand Total | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $po->purchase_order_no }} | {{ \Carbon\Carbon::parse($po->purchase_order_date)->format('d M Y') }} | {{ $po->vendor ? $po->vendor->company : $po->company_name }} | {{ $po->quotation_no ?? '-' }} | ₹{{ number_format($po->grand_total, 2) }} | {{ ucfirst($po->status ?? 'pending') }} |