@foreach($dates as $date) @endforeach @if ($compares)
 {{ trans('reports.quarter.' . $date) }}{{ trans_choice('general.totals', 1) }}
@foreach($compares['income'] as $category_id => $category) @foreach($category as $item) @endforeach @endforeach
{{ trans_choice('general.incomes', 2) }}
{{ $income_categories[$category_id] }}@money($item['amount'], $item['currency_code'], true)
@foreach($compares['expense'] as $category_id => $category) @foreach($category as $item) @endforeach @endforeach
{{ trans_choice('general.expenses', 2) }}
{{ $expense_categories[$category_id] }}@money($item['amount'], $item['currency_code'], true)
@else
{{ trans('general.no_records') }}
@endif @foreach($totals as $total) @endforeach
{{ trans('reports.net_profit') }}@money($total['amount'], $total['currency_code'], true)