akaunting/resources/views/widgets/income_by_category.blade.php

24 lines
578 B
PHP
Raw Normal View History

2019-12-31 11:27:49 +03:00
<div id="widgets-income-by-category" class="{{ $model->settings->width }}">
2019-11-16 10:21:14 +03:00
<div class="card">
2020-01-01 12:45:02 +03:00
@include('partials.widgets.standard_header')
2019-11-16 10:21:14 +03:00
<div class="card-body" id="income-category-doughnut">
2019-11-28 11:18:58 +03:00
<div class="dashboard-categories">
2019-12-28 22:30:10 +03:00
{!! $chart->container() !!}
2019-11-16 10:21:14 +03:00
</div>
</div>
</div>
</div>
@push('charts')
<script>
var income_category_doughnut = new Vue({
el: '#income-category-doughnut',
});
</script>
@endpush
@push('body_scripts')
2019-12-28 22:30:10 +03:00
{!! $chart->script() !!}
2019-11-16 10:21:14 +03:00
@endpush