Dashboard and setting->email page issue solved.
This commit is contained in:
@ -161,7 +161,5 @@
|
||||
@endsection
|
||||
|
||||
@push('scripts_start')
|
||||
<script src="https://unpkg.com/vue"></script>
|
||||
|
||||
<script src="{{ asset('public/js/common/dashboards.js?v=' . version('short')) }}"></script>
|
||||
@endpush
|
||||
|
@ -5,14 +5,12 @@
|
||||
|
||||
@stack('scripts_start')
|
||||
|
||||
<script src="{{ asset('public/0.js?v=' . version('short')) }}"></script>
|
||||
|
||||
<script src="{{ asset('public/vendor/chart.js/dist/Chart.min.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('public/js/common/search.js?v=' . version('short')) }}"></script>
|
||||
|
||||
@stack('charts')
|
||||
|
||||
<script src="{{ asset('public/vendor/chart.js/dist/Chart.min.js') }}"></script>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/echarts/4.0.2/echarts-en.min.js" charset=utf-8></script>
|
||||
|
||||
<!-- Argon -->
|
||||
|
@ -14,7 +14,7 @@
|
||||
placeholder="{{ trans('general.form.select.field', ['field' => $text]) }}"
|
||||
name="{{ $name }}"
|
||||
|
||||
@if(old($name, $value))
|
||||
@if (old($name, $value))
|
||||
value="{{ old($name, $value) }}"
|
||||
@endif
|
||||
|
||||
@ -55,7 +55,7 @@
|
||||
:disabled="'{{ $attributes['disabled'] }}'"
|
||||
@endif
|
||||
|
||||
@if(isset($attributes['v-error-message']))
|
||||
@if (isset($attributes['v-error-message']))
|
||||
:form-error="{{ $attributes['v-error-message'] }}"
|
||||
@else
|
||||
:form-error="form.errors.get('{{ $name }}')"
|
||||
|
@ -103,5 +103,7 @@
|
||||
@endsection
|
||||
|
||||
@push('scripts_start')
|
||||
<script src="{{ asset('public/38.js?v=' . version('short')) }}"></script>
|
||||
|
||||
<script src="{{ asset('public/js/settings/settings.js?v=' . version('short')) }}"></script>
|
||||
@endpush
|
||||
|
@ -10,14 +10,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@push('charts')
|
||||
<script>
|
||||
var widget_donut_{{ $class->model->id }} = new Vue({
|
||||
el: '#widget-donut-{{ $class->model->id }}',
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
|
||||
@push('body_scripts')
|
||||
{!! $chart->script() !!}
|
||||
@endpush
|
||||
|
@ -10,14 +10,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@push('charts')
|
||||
<script>
|
||||
var widget_line_{{ $class->model->id }} = new Vue({
|
||||
el: '#widget-line-{{ $class->model->id }}',
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
|
||||
@push('body_scripts')
|
||||
{!! $chart->script() !!}
|
||||
@endpush
|
||||
|
Reference in New Issue
Block a user