@extends('layouts.admin') @section('title', 'Inventory Stock History - Orange Groceries Admin') @section('header_title', 'Inventory Audit Log') @section('content')
| Timestamp | Product Name | Type | Quantity Change | Notes |
|---|---|---|---|---|
| {{ $log->created_at->format('d M Y, h:i A') }} | {{ $log->product->name ?? 'Deleted Product' }} | {{ str_replace('_', ' ', $log->type) }} | {{ $log->quantity > 0 ? '+' : '' }}{{ $log->quantity }} | {{ $log->notes ?? '-' }} |