@extends('dashboard_connect.dash_master') @section('pagescontents')

Create Comsumables Stock Register

@csrf
Please select consumable item.
@if(!empty($prosupplid) && !empty($depaid))
@csrf
Please enter invoice number.
Please enter bill number.
Please enter current balance.
Please enter receipt quantity.
Please enter issue voucher number.
Please enter issue quantity.
Please enter unit price.
Please enter particulars.
@endif @if(Session::has('status'))
@endif @if(Session::has('wrong'))
@endif

Consumable Stock Register Master

@php $intcount = 1; @endphp @foreach($consumabledata as $keyone => $itemone) @php $intcount++; @endphp @endforeach
S. No. Date Particulars of Items Supplier Invoice No. & Date Receipt Quant. Issue Vouch. No. Issue Date Issue Quant. Unit Price Action
{{ $intcount }} {{ Carbon\Carbon::parse($itemone->consuadate)->format('d-M-Y') }} {{ getitemname($itemone->prosupplid) }}
[{{ getitemtype($itemone->prosupplid) }}]
{{ $itemone->billnumber }}
{{ Carbon\Carbon::parse($itemone->billdate)->format('d-M-Y') }}
{{ Round($itemone->recpquant,2) }} {{ $itemone->issvouchnum }} {{ Carbon\Carbon::parse($itemone->issuedate)->format('d-M-Y') }} {{ Round($itemone->issuequant,2) }} {{ $itemone->unitprice }}
@endsection