@extends('admin.layouts.master-soyuz') @section('title',__('Manage All Options -')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Manage All Options') }} @endslot @slot('menu2') {{ __("Manage All Options") }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@if ($errors->any()) @endif
{{__("Option values for :")}} {{ $proattr->attr_name }}

{{__('Once you created value option you can\'t Delete it ! You can only edit it')}}

{{__("Add New Option Value for")}} {{ $proattr->attr_name }}
{{ csrf_field() }}
@if($proattr->attr_name == "Color" || $proattr->attr_name == "Colour")
@else
@php $getunitvals = App\UnitValues::where('unit_id','=',$proattr->unit_id)->get(); @endphp
@endif
@foreach($provalues as $proval) @endforeach
# {{__("Value")}} {{__("Action")}}
{{$i}}
@if(strcasecmp($proval->unit_value, $proval->values) !=0) @if($proattr->attr_name == "Color" || $proattr->attr_name == "Colour")
{{ $proval->values }} @else {{ $proval->values }}{{ $proval->unit_value }} @endif @else {{ $proval->values }} @endif
@endsection @section('custom-script') @endsection