@extends('admin.layouts.master-soyuz') @section('title',__('Add Product Variant | ')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Add Product Variant') }} @endslot @slot('menu2') {{ __("Add Product Variant") }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@if ($errors->any()) @endif
{{__("Add Product Variant For")}} {{ $findpro->name }}
{{ csrf_field() }}
{{__("Add Stock")}}
@foreach($findpro->variants as $key=> $var)
@foreach($var->attr_value as $a => $value) @php $nameofvalue = App\ProductValues::where('id','=',$value)->first(); @endphp @endforeach
@endforeach
{{ __("Please enter Price In Positive or Negative or zero") }}
{{ __('Ex. :') }}

Ex. {{ __("If you enter +10 and product price is 100 than price will be 110") }}
{{__('OR')}}
{{ __('If you enter -10 and product price is 100 than price will be 90') }}



{{ __("Important") }}

  • {{__("Altleast two variant image is required !")}}
  • {{__('Default image will be')}} Image 1 {{ __("later you can change default image in edit variant section") }}
@endsection @section('custom-script') @endsection