@extends('eliteadmin::layouts.app') @section('title', 'Finance Reports') @section('content') @include('finance::partials.filters')
Total Income
{{ platform_money($profitLossReport['total_income']) }}
Total Expense
{{ platform_money($profitLossReport['total_expense']) }}
Net Profit
{{ platform_money($profitLossReport['net_profit']) }}
Profit Margin
{{ $profitLossReport['profit_margin'] }}%
Income by Category
@foreach ($incomeReport['by_category'] as $row)@endforeach
CategoryTotalCount
{{ $row['category_name'] }}{{ platform_money($row['total']) }}{{ $row['count'] }}
Expense by Category
@foreach ($expenseReport['by_category'] as $row)@endforeach
CategoryTotalCount
{{ $row['category_name'] }}{{ platform_money($row['total']) }}{{ $row['count'] }}
@endsection