@extends('layouts.app') @section('title','Stock Ledger') @section('content')
@forelse($ledger as $item)@empty@endforelse
ItemWarehouseDateInOutBalance
{{ $item->item->name ?? '—' }}{{ $item->warehouse->name ?? '—' }}{{ $item->posting_date ?? '—' }}{{ $item->qty_in ?? '—' }}{{ $item->qty_out ?? '—' }}{{ $item->balance_qty ?? '—' }}
No records found
@endsection