@extends('layouts.admin-simple') @section('title', 'Physical Count & Cycle Counting') @section('breadcrumb') @endsection @section('page-title')

Physical Count & Cycle Counting

Perform physical inventory counts and reconcile with system records

@can('warehouse.inventory.manage')
@endcan
@endsection @section('content')
filter_list Count Filters
list Physical Count List
entries
@if($items->count() > 0) @foreach($items as $item) @endforeach @endif
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 }}
@endsection @push('styles') @endpush @push('scripts') @endpush