@extends('layouts.dashboard.superadminapp') @section('title', 'Purchase Order List') @section('styles') @endsection @section('content')

UEPL | Purchase Order List

day, 00 month 0000
@if (session('success')) @endif @if (session('error')) @endif
Purchase Order List
Add PO
@foreach ($purchaseOrders as $po) @endforeach
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') }} @if ($po->status === 'pending') @endif
@endsection @section('scripts') @endsection