@extends('layouts.master') @section('css') @endsection @section('title') Stock Items @endsection @section('content')

STOCK ITEM DETAILS

Go Back
ITEM CODE

{{ $stockItem->item_code ?? '--' }}

NAME

{{ $stockItem->name }}

STOCK GROUP

{{ $stockItem->stockGroup->name ?? '--' }}

HSN CODE

{{ $stockItem->hsn_code ?? '--' }}

TYPE

{{ $stockItem->type ?? '--' }}

GST APPLICABLE

{{ $stockItem->gst_applicable ?? '--' }}

GST%

{{ $stockItem->gst ?? '--' }}

CESS%

{{ $stockItem->cess ?? '--' }}

STATUS

{{ $stockItem->status == 1 ? 'Active' : 'Inactive' }}

DESCRIPTION

{{ $stockItem->description ?? '--' }}

Categories

@if($stockItem->stockItemCategories->count() > 0)@foreach ($stockItem->stockItemCategories as $stockItemCategory) {{ $stockItemCategory->category->name }} @if (!$loop->last) , @endif @endforeach @else -- @endif

BARCODE
@if ($stockItem->barcode == null)

--

@else

{!! DNS1D::getBarcodeHTML("$stockItem->barcode", 'C128') !!}

{{ $stockItem->barcode }}

@endif
INTERNAL BARCODE
@if ($stockItem->internal_barcode == null)

--

@else

{!! DNS1D::getBarcodeHTML("$stockItem->internal_barcode", 'C128') !!}

{{ $stockItem->internal_barcode }}

@endif

Stock Levels

Stock Warning Level

{{ $stockItem->stock_warning_level ?? '--' }}

Stock Critical Level

{{ $stockItem->stock_critical_level ?? '---' }}

BASE UNIT & PRICE DETAILS

BASE UNIT

{{ $baseUnit->unit->symbol ?? '--' }}

SELLING PRICE

{{ $baseUnit->unit_selling_price }}

PURCHASE PRICE

{{ $baseUnit->unit_purchase_price }}

MRP

{{ $stockItem->mrp }}

STOCK LOCATION DETAILS

@foreach ($stockItemLocations as $location) @endforeach
Stock Location Unit Opening Stock Value
{{ $location->stockLocation->name }} {{ $location->unit->symbol }} {{ $location->opening_stock }} {{ $location->value ?? '0.00' }}

MANUFACTURING CONSUMPTION

@foreach ($stockItemManufacturers as $stockItemManufacturer) @endforeach
Manufacturing Item Unit Quantity
{{ $stockItemManufacturer->manufacturingItem->name }} {{ $stockItemManufacturer->unit->symbol }} {{ $stockItemManufacturer->quantity }}

PRICE SLAB DETAILS

@foreach ($stockItemPriceSlabs as $priceSlab) @endforeach
Price Slab Unit Selling Price
{{ $priceSlab->priceSlab->name }} {{ $priceSlab->unit->symbol }} {{ $priceSlab->selling_price }}
@endsection @section('script') @endsection