Removed ')' in page edit blade
This commit is contained in:
parent
1e73cc9bc8
commit
b552aba450
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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="'"' + option.label + '"'" 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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue