@extends('layouts.app')
@section('title', 'Reports & Analytics')
@section('content')
Reports & Analytics
Financial statements and project reports
@php
$q = array_merge(request()->query(), ['report' => $activeReport]);
@endphp
@include('reports.partials.filter-bar')
@include('reports.partials.profit-loss')
@include('reports.partials.balance-sheet')
@include('reports.partials.trial-balance')
@include('reports.partials.assets-liabilities')
@include('reports.partials.project-reports')
@include('reports.partials.receivables')
@include('reports.partials.payables')
@include('reports.partials.vat-summary')
Figures are computed server-side from operational modules. Pending cash-flow forecasts are excluded from P&L.
@push('head')
@endpush
@endsection