ultimatepos/resources/views/vendor/charts/plottablejs/_data/one.blade.php

12 lines
287 B
PHP

var data = [
@for($i = 0; $i < count($model->values); $i++)
{
x: "{!! $model->labels[$i] !!}",
y: {{ $model->values[$i] }},
@if($model->colors)
color: "{{ $model->colors[$i] }}"
@endif
},
@endfor
];