@extends('layouts.app') @section('content')

{{ __('reports.financial_reports') }}

-
{{ __('reports.clear') }}

{{ __('reports.financial_summary') }}

@moneyWithCurrency($totals['total_accrual_income'], app('current_company')->currency)
{{ __('reports.total_invoiced_income') }}
@moneyWithCurrency($totals['total_accrual_expense'], app('current_company')->currency)
{{ __('reports.total_invoiced_expense') }}
@moneyWithCurrency($totals['accrual_balance'], app('current_company')->currency)
{{ __('reports.net_income_expense_balance') }}
@moneyWithCurrency($totals['total_cash_income'], app('current_company')->currency)
{{ __('reports.total_cash_collection') }}
@moneyWithCurrency($totals['total_cash_expense'], app('current_company')->currency)
{{ __('reports.total_expense_payment') }}
@moneyWithCurrency($totals['cash_balance'], app('current_company')->currency)
{{ __('reports.net_cash_flow') }}

{{ __('reports.periodic_profit_loss_analysis') }} {{ __('reports.follow_balance_charts') }}

{{ __('reports.monthly_financial_detail_table') }} {{ __('reports.breakdown_monthly_figures') }}

@foreach($monthlyData as $data) @endforeach
{{ __('reports.month_year') }} {{ __('reports.invoiced_income') }} {{ __('reports.invoiced_expense') }} {{ __('reports.net_invoice_balance') }} {{ __('reports.cash_collection') }} {{ __('reports.expense_payment') }} {{ __('reports.net_cash_flow_table') }}
{{ $data['month_name'] }} @money($data['accrual_income']) @money($data['accrual_expense']) @money($data['accrual_income'] - $data['accrual_expense']) @money($data['cash_income']) @money($data['cash_expense']) @money($data['cash_income'] - $data['cash_expense'])
@endsection @push('scripts') @endpush