@extends('layouts.admin') @section('page-title') {{ __('Manage Product Stock') }} @endsection @section('breadcrumb') @endsection @section('content')
@foreach ($productServices as $productService) @endforeach
{{ __('Item #') }} {{ __('Name') }} {{ __('Current Quantity') }} {{ __('Action') }}
{{ $productService->sku }} {{ $productService->name }} {{ $productService->quantity }}
@endsection