Removed ')' in page edit blade

This commit is contained in:
Jitendra Singh 2020-01-15 18:40:57 +05:30
parent 1e73cc9bc8
commit b552aba450
2 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,7 @@
</div>
<div class="page-action">
@if ($page->translate($locale)))
@if ($page->translate($locale))
<a href="{{ route('shop.cms.page', $page->translate($locale)['url_key']) }}" class="btn btn-lg btn-primary" target="_blank">
{{ __('admin::app.cms.pages.preview') }}
</a>

View File

@ -98,6 +98,7 @@
<div v-if="option.type == 'multiselect'">
<select class="control" :name="'bundle_options[' + option.id + '][]'" v-model="selected_product" v-validate="option.is_required ? 'required' : ''" :data-vv-as="'&quot;' + option.label + '&quot;'" multiple>
<option value="0">{{ __('shop::app.products.none') }}</option>
<option v-for="(product, index2) in option.products" :value="product.id">
@{{ product.name + ' + ' + product.price.final_price.formated_price }}
</option>