@extends ('layouts.app') @section ('content')
Add New Stock Item
@include('partials.messages')
@include('products.partials.categories')

    @foreach($products as $product) @include('products.partials.item') @endforeach
{{ $products->links() }}
Showing {{ ($items > $products->total()) ? $products->total() : $items }} out of {{ $products->total() }} entries
@include('modals.product_categories') @include('modals._deactivate') @include('modals.delete_product_category') @stop