@extends('layouts.app') @section('header_title', 'Financial ERP Statements') @section('content')
Gross Revenue
₦{{ number_format($revenue ?? 14500000, 2) }}
Total Expenses
₦{{ number_format($expense ?? 3500000, 2) }}
Net Operating Profit
₦{{ number_format(($revenue ?? 14500000) - ($expense ?? 3500000), 2) }}

📑 Trial Balance & Balance Sheet Overview

Accounting equation strictly maintained across all satellite branches.

@endsection