@extends('layouts.admin') @section('header-content') @endsection @section('content')
Product Details
{!! csrf_field() !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('product_code')) {{ $errors->first('product_code') }} @endif
{{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('retail_price'))--}} {{--{{ $errors->first('retail_price') }}--}} {{--@endif--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('wholesale_price'))--}} {{--{{ $errors->first('wholesale_price') }}--}} {{--@endif--}} {{--
--}} {{--
--}} @if(isset($currencies) && count($currencies)>0) @foreach($currencies as $key=>$currency) @if(isset($product->ProductPrices)) @foreach($product->ProductPrices as $price) @if($currency->id==$price->currency_id) @php $oldretail_price=bcdiv(12*($price->retail_price), 1, 2); $oldwholesalePrice=bcdiv(12*($price->wholesale_price), 1, 2); $oldvendorPrice=bcdiv(12*($price->vendor_price), 1, 2); $olddistributor_price= bcdiv(12*($price->distributor_price), 1, 2); break; @endphp @endif @endforeach @else @php $oldretail_price=''; $oldwholesalePrice=''; $oldvendorPrice=''; $olddistributor_price=''; @endphp @endif
@if ($errors->has($key.'retail_price')) {{ $errors->first($key.'retail_price') }} @endif
@if ($errors->has($key.'wholesale_price')) {{ $errors->first($key.'wholesale_price') }} @endif
@if($currency->id!=2)
@if ($errors->has($key.'distributor_price')) {{ $errors->first($key.'distributor_price') }} @endif
@if ($errors->has($key.' $oldvendorPrice')) {{ $errors->first($key.' $oldvendorPrice') }} @endif
@endif @endforeach @endif
@if ($errors->has('cotton')) {{ $errors->first('cotton') }} @endif
@if ($errors->has('tp_rate')) {{ $errors->first('tp_rate') }} @endif
@if ($errors->has('points_based_value')) {{ $errors->first('points_based_value') }} @endif
@if(isset($product) && $product->id==12)

Product Category

@foreach($product->ProductCategory as $key=>$category) @endforeach
# Name Product Code Image
{{$key+1}} {{$category->name}}
@endif {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('distributor_price'))--}} {{--{{ $errors->first('distributor_price') }}--}} {{--@endif--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('stock_available'))--}} {{--{{ $errors->first('stock_available') }}--}} {{--@endif--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('started_on'))--}} {{--{{ $errors->first('started_on') }}--}} {{--@endif--}} {{--
--}} {{--
--}} {{--
--}}
{{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('discontinued_on'))--}} {{--{{ $errors->first('discontinued_on') }}--}} {{--@endif--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('minimum_order_unit'))--}} {{--{{ $errors->first('minimum_order_unit') }}--}} {{--@endif--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('minimum_ws_quantity'))--}} {{--{{ $errors->first('minimum_ws_quantity') }}--}} {{--@endif--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{--@if ($errors->has('minimum_rs_quantity'))--}} {{--{{ $errors->first('minimum_rs_quantity') }}--}} {{--@endif--}} {{--
--}} {{--
--}}
Add Sub Product

@if(!empty($product)) @foreach($product->productImages->toarray() as $key=>$value)
@if(isset($value['image_url']) && !empty($value['image_url']))
Remove @endif
@endforeach @endif @if(!isset($key) || empty($key)) @endif
@if(!empty($product)) {!! method_field('PUT') !!} @endif {{ csrf_field() }}
@endsection @section('footer-content') @endsection