@extends('layouts.main') @section('page-title') {{ __('Income Vs Expense Summary') }} @endsection @section('page-breadcrumb') {{ __('Report') }}, {{ __('Income Vs Expense Summary') }} @endsection @push('scripts') @endpush @section('page-action')
@endsection @section('content'){{ __('Type') }} | @foreach ($monthList as $month){{ $month }} | @endforeach|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ __('Income : ') }} | ||||||||||||
{{ __('Revenue') }} | @foreach ($revenueIncomeTotal as $revenue){{ currency_format_with_sym($revenue) }} | @endforeach|||||||||||
{{ __('Invoice') }} | @foreach ($invoiceIncomeTotal as $invoice){{ currency_format_with_sym($invoice) }} | @endforeach|||||||||||
{{ __('Expense : ') }} | ||||||||||||
{{ __('Payment') }} | @foreach ($paymentExpenseTotal as $payment){{ currency_format_with_sym($payment) }} | @endforeach|||||||||||
{{ __('Bill') }} | @foreach ($billExpenseTotal as $bill){{ currency_format_with_sym($bill) }} | @endforeach|||||||||||
{{ __('Purchase') }} | @foreach ($purchaseExpenseTotal as $purchase){{ currency_format_with_sym($purchase) }} | @endforeach|||||||||||
{{ __('Employee Salary') }} | @foreach ($EmpSalary as $empsalary){{ currency_format_with_sym($empsalary) }} | @endforeach|||||||||||
{{ __('Training Cost') }} | @foreach ($TrainingCost as $trainingcost){{ currency_format_with_sym($trainingcost) }} | @endforeach|||||||||||
{{ __('Profit = Income - Expense ') }} | ||||||||||||
{{ __('Profit') }} |
@foreach ($profit as $prft)
{{ currency_format_with_sym($prft) }} | @endforeach