@extends('layouts.main')
@section('page-title')
{{__('Manage Product Stock')}}
@endsection
@push('script-page')
@endpush
@section('page-breadcrumb')
{{__('Product')}}
{{__('Product Stock')}}
@endsection
@section('page-action')
@if (URL::previous() == URL::current())
@else
@endif
@endsection
@section('content')
{{ __('Name') }} |
{{ __('Sku') }} |
{{ __('Current Quantity') }} |
{{ __('Action') }} |
@foreach ($productServices as $productService)
{{ $productService->name }} |
{{ $productService->sku }} |
{{ $productService->quantity }} |
|
@endforeach
@endsection