{{ __('Stock Management') }}

Available Stock

@if(session('success')) @endif
@forelse ($products as $product) @empty @endforelse
Product Name Current Quantity Unit Input Price/Unit Selling Price/Unit Actions
{{ $product->name }}
{{ $product->quantity }}
{{ $product->unit }}
Tsh {{ number_format($product->input_price_per_unit, 2) }}
Tsh {{ number_format($product->selling_price_per_unit, 2) }}
Edit
@csrf @method('DELETE')
No products found.
{{ $products->links() }}