@extends('layouts.admin-simple') @section('title', 'Stock Details - ' . $project->project_name) @section('breadcrumb')
Project: {{ $project->project_number ?: 'N/A' }} | Status: {{ ucfirst(str_replace('_', ' ', $project->status)) }}
| Item | Code | Category | Unit | Current Stock | Total Delivered | Min Stock Level | Unit Cost (AED) | Total Value (AED) | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
inventory_2
{{ $item->item_description }}
{{ $item->item_code }}
|
{{ $item->item_code }} | {{ $item->category->category_name ?? 'N/A' }} | {{ $item->unit_of_measure }} | {{ number_format($currentStock) }} | {{ number_format($item->total_delivered ?? 0) }} | {{ number_format($item->min_stock_level) }} | {{ number_format($item->effective_unit_price ?? $item->unit_cost, 2) }} | {{ number_format($totalValue, 2) }} | visibility |
| Total | {{ number_format($totalStock) }} | {{ number_format($items->sum('total_delivered')) }} | {{ number_format($totalValue, 2) }} | ||||||
No items match your current filter criteria for this project.
Try adjusting your filters or check if items have been assigned to this project.