{{ trans('dashboard.total_profit') }}

{{ trans('dashboard.project_name') }} {{ trans('dashboard.revenue') }} {{ trans('dashboard.expense') }} {{ trans('dashboard.profit') }}
  • @{{ totalProfit['title'] | capitalize }} @{{ (totalProfit['invoice_items_count'][0]['sum_cost'] ? totalProfit['invoice_items_count'][0]['sum_cost'] : 0) | currency: currencySymbol }} @{{ ((totalProfit['expense'] !== undefined) ? totalProfit['expense'] : ((totalProfit['expenses'] != null) ? totalProfit['expenses']['total'] : 0 )) | currency: currencySymbol }} @{{ (totalProfit['invoice_items_count'][0]['sum_cost'] ? totalProfit['invoice_items_count'][0]['sum_cost'] : 0) - ((totalProfit['expenses'] != null) ? totalProfit['expenses']['total'] : 0 ) | currency: currencySymbol }}
Total Project Profit
@{{ total_profit | currency: currencySymbol }}
Total Other Expenses
@{{ total_other_expenses | currency: currencySymbol }}
Total Net Profit
@{{ ( total_profit - total_other_expenses) | currency: currencySymbol }}