@extends('layouts.app') @section('css') {{-- select2 css --}} {{-- Datatable --}} @endsection @section('content')
| {{ __('Category') }} | {{ __('Amount') }} |
|---|---|
| {{ __('Total Income') }} | {{ $currencySymbol }} |
| {{ __('Total Expense') }} | {{ $currencySymbol }} |
| {{ __('Total Revenue') }} |
| {{ __('Category') }} | |
|---|---|
| {{ __('Income') }} | @foreach($months as $key => $month){{ formatCurrencyAmount($incomeArray[$month]) }} | @endforeach
| {{ __('Expense') }} | @foreach($months as $key => $month){{ formatCurrencyAmount($expenseArray[$month]) }} | @endforeach
| {{ __('Revenue') }} | @foreach($months as $key => $month){{$currency_sign}}{{ formatCurrencyAmount($revenueArray[$month]) }} | @endforeach