@extends('layouts/contentLayoutMaster') @section('title', 'Add Revenue Item ') @section('vendor-style') {{-- vendor css files --}} @endsection @section('content') {{ $selectedStore ? $selectedStore->name : '' }} {{-- Export Prices --}} @csrf {{-- Select Store Select Store @foreach ($stores as $store) _id ? 'selected' : '' }} value="{{ $store->id }}"> {{ ucfirst($store->name) }} @endforeach --}} Reference No @error('ref_no') {{ $message }} @enderror Select Item Select Item @foreach ($items as $item) _id ? 'selected' : '' }} value="{{ $item->_id }}"> {{ $item->code .' '. ucfirst($item->name) }} {{-- @if(isset($item->foc) && ($item->foc == 1 || $item->foc == '1')) (FOC) @endif --}} @endforeach Unit of Measure (UOM) Quantity @error('quantity') {{ $message }} @enderror Price Per Unit @error('pricePerUom') {{ $message }} @enderror Total Price @error('price') {{ $message }} @enderror {{-- Current Rate - UOM @error('tprice') {{ $message }} @enderror --}} Average Weighted Rate Per Unit Previous @error('pwa') {{ $message }} @enderror Current @error('cwa') {{ $message }} @enderror Reset No. SAP Code Store Code Item FOC Total Quantity Weighted Avg Rate {{-- Action --}} @endsection @section('vendor-script') @endsection