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

Create Fixed Assets & Consumable Items

@csrf
Please select option.
Please enter item name.
Please enter opening balance.
@if(Session::has('status'))
@endif @if(Session::has('wrong'))
@endif

Item Detail Master

@php $intcount = 1; @endphp @foreach($stockinvtdata as $keyone => $itemone) @php $prodidexistsfar = 0; $prodidexistsconm = 0; $prodidexistsfar = getprodidfar($itemone->id); $prodidexistsconm = getprodidconb($itemone->id); @endphp @php $intcount++; @endphp @endforeach
S. No. Open Date Item Type Item Name Opening Balance Action
{{ $intcount }} {{ Carbon\Carbon::parse($itemone->opendate)->format('d-M-Y') }} {{ Str::upper($itemone->prodtype) }} {{ Str::upper($itemone->prodname) }} {{ Round($itemone->openbal,2) }}
@if($prodidexistsfar>0 || $prodidexistsconm>0) @else @endif
@endsection