@extends("admin/layouts.sellermastersoyuz") @section('body') @component('seller.components.breadcumb',['secondactive' => 'active']) @slot('heading') {{ __('Add Product Variant') }} @endslot @slot('menu1') {{ __('Add Product Variant ') }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
{{__('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')}}

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

{{ __('Important') }}

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