@extends('layouts.main') @section('page-title') {{ __('Profit & Loss Summary') }} @endsection @section('page-breadcrumb') {{ __('Report') }}, {!! __('Profit & Loss Summary') !!} @endsection @push('scripts') @endpush @section('page-action')
@endsection @section('content'){{ __('Category') }} | @foreach ($month as $m){{ $m }} | @endforeach|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ __('Revenue : ') }} | ||||||||||||
{{ !empty($revenue['category']) ? $revenue['category'] : '' }} | @foreach ($revenue['amount'] as $j => $amount){{ currency_format_with_sym($amount) }} | @endforeach|||||||||||
{{ __('Invoice : ') }} | ||||||||||||
{{ !empty($invoice['category']) ? $invoice['category'] : '' }} | @foreach ($invoice['amount'] as $j => $amount){{ currency_format_with_sym($amount) }} | @endforeach
{{ __('Total Income = Revenue + Invoice ') }} | ||||||||||||
{{ __('Total Income') }} | @foreach ($totalIncome as $income){{ currency_format_with_sym($income) }} | @endforeach
{{ __('Category') }} | @foreach ($month as $m){{ $m }} | @endforeach|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ __('Payment : ') }} | ||||||||||||
{{ !empty($expense['category']) ? $expense['category'] : '' }} | @foreach ($expense['amount'] as $j => $amount){{ currency_format_with_sym($amount) }} | @endforeach|||||||||||
{{ __('Bill : ') }} | ||||||||||||
{{ !empty($bill['category']) ? $bill['category'] : '' }} | @foreach ($bill['amount'] as $j => $amount){{ currency_format_with_sym($amount) }} | @endforeach|||||||||||
{{ __('Employee Salary :') }} | @foreach ($salexpensearray['amount'] as $j => $amount){{ currency_format_with_sym($amount) }} | @endforeach|||||||||||
{{ __('Training Cost :') }} | @foreach ($trainingcostexpensearray['amount'] as $j => $amount){{ currency_format_with_sym($amount) }} | @endforeach
{{ __('Total Expense = Payment + Bill + Employee Salary + Training Cost') }} | ||||||||||||
{{ __('Total Expenses') }} | @foreach ($totalExpense as $expense){{ currency_format_with_sym($expense) }} | @endforeach
{{ __('Total Expense = Payment + Bill + Employee Salary') }} | ||||||||||||
{{ __('Total Expenses') }} | @foreach ($totalExpense as $expense){{ currency_format_with_sym($expense) }} | @endforeach
{{ __('Total Expense = Payment + Bill') }} | ||||||||||||
{{ __('Total Expenses') }} | @foreach ($totalExpense as $expense){{ currency_format_with_sym($expense) }} | @endforeach
{{ __('Net Profit = Total Income - Total Expense ') }} | ||||||||||||
{{ __('Net Profit') }} | @foreach ($netProfitArray as $i => $profit){{ currency_format_with_sym($profit) }} | @endforeach