@include('new_layouts.header')
@include('accounting.side-menu')
{{__('Manage Product Stock')}}
| {{ __('Name') }} |
{{ __('Sku') }} |
{{ __('Current Quantity') }} |
{{ __('Action') }} |
@foreach ($productServices as $productService)
| {{ $productService->name }} |
{{ $productService->sku }} |
{{ $productService->quantity }} |
|
@endforeach
@include('new_layouts.footer')