@extends('layouts.location') @section('title', 'Replenishment History') @section('page-title', 'Replenishment History') @section('content')
Stored Replenishment Data
@if(session('success'))
{{ session('success') }}
@endif
@forelse($history as $h) @empty @endforelse
Item Name SKU Code Rack Available Qty Min Max Status Required Qty Transfer Location SO Req SO Rem Stored At
{{ $h->item_name }} {{ $h->sku_code }} {{ $h->rack }} {{ $h->available_qty }} {{ $h->min_qty }} {{ $h->max_qty }} {{ $h->status }} {{ $h->required_qty }} {{ $h->transfer_location }} {{ $h->so_required_qty }} {{ $h->so_remaining_qty }} {{ $h->created_at ? $h->created_at->format('Y-m-d H:i') : '-' }}
No history found.
@endsection