Setting email editor issue solved.

This commit is contained in:
Cüneyt Şentürk
2019-11-22 15:16:57 +03:00
parent 9b86b70c91
commit 346c208e63
6 changed files with 13691 additions and 11 deletions

View File

@@ -9,6 +9,8 @@
<script src="{{ asset('public/js/common/search.js?v=' . version('short')) }}"></script>
<script src="{{ asset('public/0.js?v=' . version('short')) }}"></script>
<script src="https://unpkg.com/vue"></script>
@stack('charts')

View File

@@ -0,0 +1,19 @@
@stack($name . '_input_start')
<div
class="form-group {{ $col }} {{ isset($attributes['required']) ? 'required' : '' }}"
:class="[{'has-error': {{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.get("' . $name . '")' }} }]">
{!! Form::label($name, $text, ['class' => 'form-control-label']) !!}
<html-editor
:name="'{{ $name }}'"
:value="form.{{ $name }} = '{{ $value }}'"
@input="form.{{ $name }} = $event"></html-editor>
<div class="invalid-feedback d-block"
v-if="{{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.has("' . $name . '")' }}"
v-html="{{ isset($attributes['v-error-message']) ? $attributes['v-error-message'] : 'form.errors.get("' . $name . '")' }}">
</div>
</div>
@stack($name . '_input_end')