{{ __('Repair Stock') }}

Manage inventory for spare parts and tools
Add Part
Total Spares
{{ $products->count() }}
Out of Stock
{{ $outOfStockCount }}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if(request('filter'))
Showing {{ request('filter') == 'low' ? 'Low Stock' : request('filter') }} items only.
Show All
@endif
@foreach($products as $product) @endforeach @if($products->isEmpty()) @endif
Part Category Stock Status Update
{{ $product->name }}
{{ $product->brand }} {{ $product->model }}
{{ $product->category->name }}
{{ $product->stock }}
@if($product->stock <= 0) Out @elseif($product->stock < 5) Low @else OK @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
No repair parts found.