@extends('layouts.master') @section('css') @endsection @section('title') Scheme Details @endsection @section('content') @csrf {{-- Schema section start --}} Scheme Details @isset($stockItem) @if ($stockItem->stockItemSchemes->count() > 0) @foreach ($stockItem->stockItemSchemes as $key => $stockItemScheme) Schema Name @foreach ($schemes as $scheme) scheme_id == $scheme->id ? 'selected' : '' }}> {{ $scheme->name }} @endforeach Unit @foreach ($units as $unit) unit_id == $unit->id ? 'selected' : '') : '' }}> {{ $unit->symbol }} @endforeach Selling Price (Excl Tax) Quantity quantity }}> @endforeach @else Scheme @foreach ($schemes as $scheme) {{ $scheme->name }} @endforeach Unit @foreach ($units as $unit) {{ $unit->symbol }} @endforeach Selling Price(Excl Tax) Quantity @endif @endisset Add Submit {{-- {{ Schema section ends }} --}} @endsection @section('script') @endsection