@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')
@foreach ($productServices as $productService) @endforeach
{{ __('Name') }} {{ __('Sku') }} {{ __('Current Quantity') }} {{ __('Action') }}
{{ $productService->name }} {{ $productService->sku }} {{ $productService->quantity }}
@endsection