26 lines
585 B
PHP
26 lines
585 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 = {
|
|
showArea: true,
|
|
@include('charts::_partials.dimension.js')
|
|
};
|
|
|
|
new Chartist.Line('#{{ $model->id }}', data, options);
|
|
</script>
|