@extends('layouts.app') @section('title','Stock Ledger') @section('content')
| Item | Warehouse | Date | In | Out | Balance | |
|---|---|---|---|---|---|---|
| {{ $item->item->name ?? '—' }} | {{ $item->warehouse->name ?? '—' }} | {{ $item->posting_date ?? '—' }} | {{ $item->qty_in ?? '—' }} | {{ $item->qty_out ?? '—' }} | {{ $item->balance_qty ?? '—' }} | |
| No records found | ||||||