{{ __('Inventory Management') }}

Part Finder

@foreach ($parts as $part) @endforeach
Actions Product Number Name Info Extra
@if (!empty($part->ProductNumber)) @endif {!! $part->ProductNumber !!} {!! $part->InfoPart1 !!} {!! $part->InfoPart2 !!} {!! $part->Service_Info !!}
{{ $parts->appends(request()->except('partsPage'))->links() }}

Current Inventory

@if($inventoryItems && $inventoryItems->count() > 0) @foreach ($inventoryItems as $item) @endforeach @else @endif
Actions Product Number Name Info Quantity
{{ optional($item->product)->ProductNumber ?? 'N/A' }} {{ optional($item->product)->InfoPart1 ?? 'N/A' }} {{ optional($item->product)->InfoPart2 ?? 'N/A' }} {{ $item->quantity }}
No items in inventory.
@if($inventoryItems && $inventoryItems->count()) {{ $inventoryItems->appends(request()->except('inventoryPage'))->links() }} @else

No inventory items found.

@endif
@if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot'))) @vite(['resources/js/inventory.js']) @endif