14 lines
724 B
PHP
14 lines
724 B
PHP
@if(!defined('LOAD_HIGHCHARTS'))
|
|
@push('css')
|
|
|
|
@endpush
|
|
@push('scripts')
|
|
<script src="{{ asset('/assets/plugins/highcharts/highcharts.js') }}"></script>
|
|
<script src="{{ asset('/assets/plugins/highcharts/highcharts-more.js') }}"></script>
|
|
<script src="{{ asset('/assets/plugins/highcharts/modules/series-label.js') }}"></script>
|
|
<script src="{{ asset('/assets/plugins/highcharts/modules/exporting.js') }}"></script>
|
|
<script src="{{ asset('/assets/plugins/highcharts/modules/export-data.js') }}"></script>
|
|
<script src="{{ asset('/assets/plugins/highcharts/modules/accessibility.js') }}"></script>
|
|
@endpush
|
|
@php(define('LOAD_HIGHCHARTS', true))
|
|
@endif |