@extends('admin.layouts.app') @section('title', 'Stock History') @section('content')
@foreach($history as $h) @endforeach
ProductPreviousNewChangeActionAdminNoteDate
{{ $h->product->name ?? '—' }} {{ $h->previous_stock }} {{ $h->new_stock }} {{ $h->quantity_changed>=0?'+':'' }}{{ $h->quantity_changed }} {{ ucfirst($h->action_type) }} {{ $h->admin->name ?? 'System' }} {{ $h->note }} {{ $h->created_at->format('M d, Y H:i') }}
{{ $history->links() }}
@endsection