2019-11-16 10:21:14 +03:00
|
|
|
@php $chart = $class->getChart(); @endphp
|
|
|
|
|
2020-01-02 15:36:27 +03:00
|
|
|
<div id="report-chart" class="card-body">
|
2019-11-16 10:21:14 +03:00
|
|
|
{!! $chart->container() !!}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@push('charts')
|
|
|
|
<script>
|
|
|
|
var cash_flow = new Vue({
|
|
|
|
el: '#report-chart',
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|
|
|
|
|
|
|
|
@push('body_scripts')
|
|
|
|
{!! $chart->script() !!}
|
|
|
|
@endpush
|