@extends('layouts.admin-simple') @section('title', 'Easy In — Purchases') @section('breadcrumb')
Quick purchase records without inventory stock-in
| Item Description | Unit | Total Purchased | Total Dispatched | On Hand |
|---|---|---|---|---|
| {{ $row->item_description }} | {{ $row->unit }} | {{ number_format($row->total_purchased, 2) }} | {{ number_format($row->total_dispatched, 2) }} | {{ number_format($row->on_hand, 2) }} |
| Ref # | Date | Item Description | Unit | Qty | Supplier | Invoice / LPO | Division | Total (AED) | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $purchase->reference_number }} | {{ $purchase->purchase_date->format('d M Y') }} | {{ $purchase->item_description }} | {{ $purchase->unit }} | {{ number_format($purchase->quantity, 2) }} | {{ $purchase->supplier_name ?? '-' }} | @if($purchase->invoice_number) {{ $purchase->invoice_number }} @endif @if($purchase->lpo_number) {{ $purchase->lpo_number }} @endif @if(!$purchase->invoice_number && !$purchase->lpo_number) - @endif | {{ $purchase->division?->division_name ?? '-' }} | {{ number_format($purchase->total_amount, 2) }} | visibility |
| No purchase records found. | |||||||||