@extends('layouts.main') @section('page-title') {{ __('Expense Summary') }} @endsection @section('page-breadcrumb') {{ __('Report') }}, {{ __('Expense Summary') }} @endsection @push('scripts') @endpush @section('page-action')
@endsection @section('content'){{ __('Category') }} | @foreach ($monthList as $month){{ $month }} | @endforeach|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ __('Payment :') }} | ||||||||||||
{{ !empty($expense['category']) ? $expense['category'] : '' }} | @foreach ($expense['data'] as $j => $data){{ currency_format_with_sym($data) }} | @endforeach|||||||||||
{{ __('Bill :') }} | ||||||||||||
{{ !empty($bill['category']) ? $bill['category'] : '' }} | @foreach ($bill['data'] as $j => $data){{ currency_format_with_sym($data) }} | @endforeach|||||||||||
{{ __('Purchase :') }} | ||||||||||||
{{ !empty($purchase['category']) ? $purchase['category'] : '' }} | @foreach ($purchase['data'] as $j => $data){{ currency_format_with_sym($data) }} | @endforeach|||||||||||
{{ __('Employee Salary :') }} | ||||||||||||
{{ __('Employee Salary') }} | @foreach ($EmpSalary as $j => $empsal){{ currency_format_with_sym($empsal) }} | @endforeach|||||||||||
{{ __('Training Cost :') }} | ||||||||||||
{{ __('Training Cost') }} | @foreach ($TrainingCost as $j => $trainingcost){{ currency_format_with_sym($trainingcost) }} | @endforeach|||||||||||
{{ __('Expense = Payment + Bill + Employee Salary + Training Cost :') }} | ||||||||||||
{{ __('Expense = Payment + Bill + Employee Salary :') }} | ||||||||||||
{{ __('Expense = Payment + Bill + Purchase :') }} | ||||||||||||
{{ __('Total') }} |
@foreach ($chartExpenseArr as $i => $expense)
{{ currency_format_with_sym($expense) }} | @endforeach