@extends('layouts.finance') @section('title', 'Reports') @section('subtitle', 'Profit and loss, balance sheet and trends') @section('content')

Profit & Loss Statement

@foreach($reports['pl'] as $label => $amount) @endforeach
{{ $label }} {{ $metrics->money($amount) }}

Balance Sheet Snapshot

@foreach($reports['balance'] as $label => $amount) @endforeach
{{ $label }} {{ $metrics->money($amount) }}

6-Month Revenue vs Expenses

@foreach($trend['labels'] as $i => $label) @endforeach
MonthRevenueExpensesNet
{{ $label }} {{ $metrics->money($trend['revenue'][$i]) }} {{ $metrics->money($trend['expenses'][$i]) }} {{ $metrics->money($trend['revenue'][$i] - $trend['expenses'][$i]) }}
@endsection