@extends('layouts.admin') @section('page-title') {{ __('Income Summary') }} @endsection @section('breadcrumb')
| {{ __('Category') }} | @foreach ($monthList as $month){{ $month }} | @endforeach|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ __('Revenue :') }} | ||||||||||||
| {{ $income['category'] }} | @foreach ($income['data'] as $j => $data){{ \Auth::user()->priceFormat($data) }} | @endforeach|||||||||||
| {{ __('Invoice :') }} | ||||||||||||
| {{ $invoice['category'] }} | @foreach ($invoice['data'] as $j => $data){{ \Auth::user()->priceFormat($data) }} | @endforeach|||||||||||
| {{ __('Income = Revenue + Invoice :') }} | ||||||||||||
{{ __('Total') }} |
@foreach ($chartIncomeArr as $i => $income)
@foreach ($income as $value)
{{ \Auth::user()->priceFormat($value) }} | @endforeach @endforeach|||||||||||