@extends('layouts.app') @section('title', 'Pharmacy | Procurement') @section('styles') @endsection @section('content')
Purchase orders, goods received, suppliers
| PO # | Supplier | Date | Items | Total (KES) | Status | Created By | Actions |
|---|---|---|---|---|---|---|---|
| {{ $po->po_number ?? $po->id }} | {{ $po->supplier->name ?? '' }} | {{ $po->created_at->format('d M Y') }} | {{ $po->items->count() ?? 0 }} | {{ number_format($po->total_amount ?? 0) }} | {{ ucfirst($po->status) }} | {{ $po->creator->name ?? '' }} | View |
| No purchase orders. | |||||||
| GRN # | Linked PO | Supplier | Date Received | Invoice # | Status |
|---|---|---|---|---|---|
| {{ $grn->grn_number ?? $grn->id }} | {{ $grn->po_number ?? '|' }} | {{ $grn->supplier->name ?? '' }} | {{ $grn->received_at?->format('d M Y') ?? $grn->created_at->format('d M Y') }} | {{ $grn->invoice_number ?? '|' }} | {{ ucfirst($grn->status ?? 'posted') }} |
| No goods received records. | |||||
| Name | Contact | Phone | KRA PIN | Payment Terms | Status | |
|---|---|---|---|---|---|---|
| {{ $s->name }} | {{ $s->contact_person }} | {{ $s->phone }} | {{ $s->email }} | {{ $s->kra_pin }} | {{ $s->payment_terms_days }} days | @if($s->is_active)Active@elseInactive@endif |
| No suppliers. | ||||||