23 lines
546 B
PHP
23 lines
546 B
PHP
@include('charts::_partials.container.chartist')
|
|
|
|
<script type="text/javascript">
|
|
var data = {
|
|
labels: [
|
|
@foreach($model->labels as $label)
|
|
"{!! $label !!}",
|
|
@endforeach
|
|
],
|
|
series: [
|
|
[
|
|
@foreach($model->values as $value)
|
|
{{ $value }},
|
|
@endforeach
|
|
],
|
|
]
|
|
};
|
|
|
|
var options = { @include('charts::_partials.dimension.js') }
|
|
|
|
new Chartist.Line('#{{ $model->id }}', data, options);
|
|
</script>
|