@extends('admin.layouts.app') @section('title', 'Stock Report') @section('content')
@foreach($transactions as $t) @endforeach
ProductPreviousNewChangeTypeAdminDate
{{ $t->product->name ?? '—' }}{{ $t->previous_stock }}{{ $t->new_stock }}{{ $t->quantity_changed }}{{ ucfirst($t->action_type) }}{{ $t->admin->name ?? 'System' }}{{ $t->created_at->format('M d, H:i') }}
{{ $transactions->links() }}
@endsection