@extends('layout.app') @section('title') {{ __('Project Financials') }} - {{ $project->subject }} @endsection @section('content')
{{ __('Net Distributable Income') }}

{{ number_format($netIncome, 2) }} {{-- Currency should be dynamic --}}

{{ __('Revenue - Operational Expenses') }}

{{ __('Operational Expenses (OPEX)') }}

{{ __('Deducted from Revenue before Distribution') }}
    @forelse($operationalExpenses as $expense)
  • {{ $expense->description }} {{ number_format($expense->total, 2) }}
  • @empty
  • {{ __('No operational expenses found') }}
  • @endforelse

{{ __('Capital Expenses (CAPEX)') }}

{{ __('Added to Project Asset Value (Not deducted from Revenue)') }}
    @forelse($capitalExpenses as $expense)
  • {{ $expense->description }} {{ number_format($expense->total, 2) }}
  • @empty
  • {{ __('No capital expenses found') }}
  • @endforelse
@endsection