@extends('layouts.admin-simple') @section('title', 'Indirect Goods - Adjustments') @section('breadcrumb')
Manual stock adjustments for indirect goods
| # | Date | Indirect Good | Invoice No. | Qty Before | Qty Moved | Qty After | By | Notes |
|---|---|---|---|---|---|---|---|---|
| {{ $adjustments->firstItem() + $index }} | {{ $adj->created_at->format('d M Y H:i') }} | {{ $adj->indirectGood ? $adj->indirectGood->ig_code . ' - ' . $adj->indirectGood->ig_description : '-' }} | {{ $adj->invoice_number ?: '-' }} | {{ number_format($adj->quantity_before, 2) }} | {{ number_format($adj->quantity_moved, 2) }} | {{ number_format($adj->quantity_after, 2) }} | {{ $adj->user ? $adj->user->name : '-' }} | {{ $adj->notes }} |