@extends('layouts.app') @section('content')
@include('stock.nav', ['tab' => 'full-history'])

Select a Product to View Stock History

@if(session('errors'))
{{ session('errors')->first() }}
@endif

Or select from recent products:

@foreach($products->take(20) as $product) {{ $product->name }} {{ $product->barcode ?: $product->sku }} @endforeach
@endsection