@extends('layouts.master') @section('css') @endsection @section('title') Stock Items @endsection @section('content')
{{ $stockItem->item_code ?? '--' }}
{{ $stockItem->name }}
{{ $stockItem->stockGroup->name ?? '--' }}
{{ $stockItem->hsn_code ?? '--' }}
{{ $stockItem->type ?? '--' }}
{{ $stockItem->gst_applicable ?? '--' }}
{{ $stockItem->gst ?? '--' }}
{{ $stockItem->cess ?? '--' }}
{{ $stockItem->status == 1 ? 'Active' : 'Inactive' }}
{{ $stockItem->description ?? '--' }}
@if($stockItem->stockItemCategories->count() > 0)@foreach ($stockItem->stockItemCategories as $stockItemCategory) {{ $stockItemCategory->category->name }} @if (!$loop->last) , @endif @endforeach @else -- @endif
--
@else{!! DNS1D::getBarcodeHTML("$stockItem->barcode", 'C128') !!}
{{ $stockItem->barcode }}
@endif--
@else{!! DNS1D::getBarcodeHTML("$stockItem->internal_barcode", 'C128') !!}
{{ $stockItem->internal_barcode }}
@endif{{ $stockItem->stock_warning_level ?? '--' }}
{{ $stockItem->stock_critical_level ?? '---' }}
{{ $baseUnit->unit->symbol ?? '--' }}
{{ $baseUnit->unit_selling_price }}
{{ $baseUnit->unit_purchase_price }}
{{ $stockItem->mrp }}
| Stock Location | Unit | Opening Stock | Value |
|---|---|---|---|
| {{ $location->stockLocation->name }} | {{ $location->unit->symbol }} | {{ $location->opening_stock }} | {{ $location->value ?? '0.00' }} |
| Manufacturing Item | Unit | Quantity |
|---|---|---|
| {{ $stockItemManufacturer->manufacturingItem->name }} | {{ $stockItemManufacturer->unit->symbol }} | {{ $stockItemManufacturer->quantity }} |
| Price Slab | Unit | Selling Price |
|---|---|---|
| {{ $priceSlab->priceSlab->name }} | {{ $priceSlab->unit->symbol }} | {{ $priceSlab->selling_price }} |