@extends('layouts.admin') @section('title', 'Inventory Stock History - Orange Groceries Admin') @section('header_title', 'Inventory Audit Log') @section('content')

Full Inventory Movement Log

Back to Stock Entry
@foreach($logs as $log) @endforeach
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 ?? '-' }}
{{ $logs->links() }}
@endsection