Files
opensem/resources/views/load/chart/highcharts.blade.php
2021-07-25 23:19:27 +02:00

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