@extends('layouts.master') @section('css') @endsection @section('title') Ledger Opening Stocks {{ $ledger->name }} @endsection @section('content') @csrf Ledger Opening Stocks - {{ $ledger->name }} Item Unit Quantity @foreach ($stockItems as $key => $stockItem) @php $key++; @endphp {{ $stockItem->name }} @foreach ($stockItem->itemUnits as $unit) openingStocks->where('stock_item_id', $stockItem->id)->where('unit_id', $unit->unit_id)->first()) selected @endif> {{ $unit->unit->symbol }} @endforeach openingStocks->where('stock_item_id', $stockItem->id)->first() != null) value="{{ $ledger->openingStocks->where('stock_item_id', $stockItem->id)->first()['opening_stock'] }}" @endif> @endforeach Submit @endsection @section('script') @endsection