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