@extends('layouts.admin-simple') @section('title', $purchase->reference_number) @section('breadcrumb')
Easy In Purchase — {{ $purchase->purchase_date->format('d M Y') }}
| Reference # | {{ $purchase->reference_number }} |
|---|---|
| Purchase Date | {{ $purchase->purchase_date->format('d M Y') }} |
| Item Description | {{ $purchase->item_description }} |
| Unit | {{ $purchase->unit }} |
| Quantity | {{ number_format($purchase->quantity, 2) }} |
| Unit Price | AED {{ number_format($purchase->unit_price, 2) }} |
| Total Amount | AED {{ number_format($purchase->total_amount, 2) }} |
| Division | {{ $purchase->division?->division_name ?? '-' }} |
| Supplier | {{ $purchase->supplier_name ?? '-' }} |
|---|---|
| Invoice # | {{ $purchase->invoice_number ?? '-' }} |
| LPO # | {{ $purchase->lpo_number ?? '-' }} |
| Recorded By | {{ $purchase->createdBy?->name ?? '-' }} |
| Created At | {{ $purchase->created_at->format('d M Y H:i') }} |
{{ $purchase->notes }}