@extends('admin.layout') @section('content')

{{ trans('labels.AddOptions') }} {{ trans('labels.AddOptions') }}...

{{ trans('labels.ListingDefaultOptions') }}

@if (count($result['products_attributes']) > 0) @foreach($result['products_attributes'] as $key=>$products_attributes) @if($products_attributes->is_default == '1') @endif @endforeach @else @endif
{{ trans('labels.ID') }} {{ trans('labels.OptionName') }} {{ trans('labels.OptionValue') }} {{ trans('labels.Action') }}
{{ ++$key }} {{ $products_attributes->products_options_name }} {{ $products_attributes->products_options_values_name }}
{{ trans('labels.NoRecordFoundTextForDefaultOption') }}

{{ trans('labels.ListingAdditionalProductsOptions') }}

@if (count($result['products_attributes']) > 0) @foreach($result['products_attributes'] as $key=>$products_attributes) @if($products_attributes->is_default == '0') @endif @endforeach @else @endif
{{ trans('labels.ID') }} {{ trans('labels.OptionName') }} {{ trans('labels.OptionValue') }} {{ trans('labels.Price') }} {{ trans('labels.Action') }}
{{ ++$key }} {{ $products_attributes->products_options_name }} {{ $products_attributes->products_options_values_name }} {{ $products_attributes->price_prefix }}{{ $products_attributes->options_values_price }}
{{ trans('labels.NoRecordFoundTextForAdditionalOption') }}
@endsection