2019-11-16 10:21:14 +03:00

18 lines
317 B
PHP

@php $chart = $class->getChart(); @endphp
<div class="card-body" id="report-chart">
{!! $chart->container() !!}
</div>
@push('charts')
<script>
var cash_flow = new Vue({
el: '#report-chart',
});
</script>
@endpush
@push('body_scripts')
{!! $chart->script() !!}
@endpush