@extends('layouts.app') @section('css') {{-- select2 css --}} {{-- Datatable --}} @endsection @section('content') @php $mnths=[]; foreach ($months as $key => $value) { $value = sanitize_output($value); array_push($mnths, $value); } $mnths = implode(",",$mnths); @endphp
@foreach ($categoryTotals as $key => $value) @endforeach @if (isset($generalTotal) && !empty($generalTotal)) @else @endif
Category Amount
{{ $key }} {{ $currencySymbol }}{{ formatCurrencyAmount($value) }}
Total{{ $currencySymbol }}{{ formatCurrencyAmount($generalTotal) }}-
@php $generalTotal = 0; @endphp
@foreach($incomeList as $category => $data) @endforeach
{{ __('Category') }}
{{ $category }}
{{ __('Sub Total') }}
@endsection @section('js') {{-- Select2 --}} @endsection