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