@extends('layouts.admin') @section('page-title') {{__('Profit & Loss Summary')}} @endsection @section('breadcrumb')
| {{__('Category')}} | @foreach($month as $m){{$m}} | @endforeach|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{__('Revenue : ')}} | ||||||||||||
| {{$revenue['category']}} | @foreach($revenue['amount'] as $j=>$amount){{\Auth::user()->priceFormat($amount)}} | @endforeach|||||||||||
| {{__('Invoice : ')}} | ||||||||||||
| {{$invoice['category']}} | @foreach($invoice['amount'] as $j=>$amount){{\Auth::user()->priceFormat($amount)}} | @endforeach|||||||||||
| {{__('Total Income = Revenue + Invoice ')}} | ||||||||||||
| {{__('Total Income')}} | @foreach($totalIncome as $income){{\Auth::user()->priceFormat($income)}} | @endforeach|||||||||||
| {{__('Category')}} | @foreach($month as $m){{$m}} | @endforeach|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{__('Payment : ')}} | ||||||||||||
| {{$expense['category']}} | @foreach($expense['amount'] as $j=>$amount){{\Auth::user()->priceFormat($amount)}} | @endforeach|||||||||||
| {{__('Bill : ')}} | ||||||||||||
| {{$bill['category']}} | @foreach($bill['amount'] as $j=>$amount){{\Auth::user()->priceFormat($amount)}} | @endforeach|||||||||||
| {{__('Total Expense = Payment + Bill ')}} | ||||||||||||
| {{__('Total Expenses')}} | @foreach($totalExpense as $expense){{\Auth::user()->priceFormat($expense)}} | @endforeach|||||||||||
| {{__('Net Profit = Total Income - Total Expense ')}} | ||||||||||||
| {{__('Net Profit')}} | @foreach($netProfitArray as $i=>$profit){{\Auth::user()->priceFormat($profit)}} | @endforeach|||||||||||