@extends('layouts.admin-simple') @section('title', 'Physical Count & Cycle Counting') @section('breadcrumb')
Perform physical inventory counts and reconcile with system records
| Item | Category | Current Stock | Physical Count | Variance | Status | Last Updated | Actions |
|---|---|---|---|---|---|---|---|
|
{{ substr($item->item_description ?? $item->item_code ?? 'U', 0, 1) }}
{{ $item->item_description ?? $item->item_code ?? 'Unknown Item' }}
{{ $item->item_code ?? 'No Code' }}
|
@if($item->category)
category
{{ $item->category->category_name }}
@else
-
@endif
|
@php
$currentStock = $item->inventories ? $item->inventories->sum('quantity_available') : 0;
@endphp
{{ number_format($currentStock, 2) }}
{{ $item->unit_of_measure ?? 'pcs' }}
|
- | Pending |
{{ now()->format('M j, Y') }}
by {{ auth()->user()->name }}
|
|