@extends('layouts.admin') @section('page-title') {{__('Income Vs Expense Summary')}} @endsection @section('breadcrumb')
| {{__('Type')}} | @foreach($monthList as $month){{$month}} | @endforeach|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{__('Income : ')}} | ||||||||||||
| {{(__('Revenue'))}} | @foreach($revenueIncomeTotal as $revenue){{\Auth::user()->priceFormat($revenue)}} | @endforeach|||||||||||
| {{(__('Invoice'))}} | @foreach($invoiceIncomeTotal as $invoice){{\Auth::user()->priceFormat($invoice)}} | @endforeach|||||||||||
| {{__('Expense : ')}} | ||||||||||||
| {{(__('Payment'))}} | @foreach($paymentExpenseTotal as $payment){{\Auth::user()->priceFormat($payment)}} | @endforeach|||||||||||
| {{(__('Bill'))}} | @foreach($billExpenseTotal as $bill){{\Auth::user()->priceFormat($bill)}} | @endforeach|||||||||||
| {{__('Profit = Income - Expense ')}} | ||||||||||||
{{(__('Profit'))}} |
@foreach($profit as $prft)
{{\Auth::user()->priceFormat($prft)}} | @endforeach|||||||||||