@component('components.widget', ['class' => 'box-primary'])
{!! $chart->container() !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
@lang('expense.expense_categories') |
@lang('report.total_expense') |
@php
$total_expense = 0;
@endphp
@foreach ($expenses as $expense)
{{ $expense['category'] ?? __('report.others') }} |
{{ $expense['total_expense'] }} |
@php
$total_expense += $expense['total_expense'];
@endphp
@endforeach
@lang('sale.total') |
{{ $total_expense }} |
@endcomponent
@endsection
@section('javascript')
{!! $chart->script() !!}
@endsection