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