@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
openingStocks->where('stock_item_id', $stockItem->id)->first() != null) value="{{ $ledger->openingStocks->where('stock_item_id', $stockItem->id)->first()['opening_stock'] }}" @endif>
@endforeach
@endsection @section('script') @endsection