@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'] }}%
| Category | Total | Count |
@foreach ($incomeReport['by_category'] as $row)| {{ $row['category_name'] }} | {{ platform_money($row['total']) }} | {{ $row['count'] }} |
@endforeach
| Category | Total | Count |
@foreach ($expenseReport['by_category'] as $row)| {{ $row['category_name'] }} | {{ platform_money($row['total']) }} | {{ $row['count'] }} |
@endforeach
@endsection