@extends('layouts.master') @section('css') @endsection @section('title') Stock Item Consumption @endsection @section('content') @csrf Manufacturing Consumption for {{ $stockItem->name }} @isset($stockItem) @if ($stockItem->stockItemManufacturers->count() > 0) @foreach ($stockItem->stockItemManufacturers as $key => $stockItemManufacturer) @if ($key == 0) Item @foreach ($stockItems as $stockItem) manufacturing_item_id == $stockItem->id ? 'selected' : '') : '' }}> {{ $stockItem->name }} @endforeach Unit @foreach ($units as $unit) unit_id == $unit->id ? 'selected' : '') : '' }}> {{ $unit->symbol }} @endforeach Quantity @else Item @foreach ($stockItems as $stockItem) manufacturing_item_id == $stockItem->id ? 'selected' : '') : '' }}> {{ $stockItem->name }} @endforeach Unit @foreach ($units as $unit) unit_id == $unit->id ? 'selected' : '') : '' }}> {{ $unit->symbol }} @endforeach Quantity @endif @endforeach @else Item @foreach ($stockItems as $stockItem) {{ $stockItem->name }} @endforeach Unit @foreach ($units as $unit) {{ $unit->symbol }} @endforeach Quantity @endif @else Item @foreach ($stockItems as $stockItem) {{ $stockItem->name }} @endforeach Unit @foreach ($units as $unit) {{ $unit->symbol }} @endforeach Quantity @endisset Update Consumption @endsection @section('script') @endsection