@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)
| {{ $label }} |
{{ $metrics->money($amount) }} |
@endforeach
Balance Sheet Snapshot
@foreach($reports['balance'] as $label => $amount)
| {{ $label }} |
{{ $metrics->money($amount) }} |
@endforeach
6-Month Revenue vs Expenses
| Month | Revenue | Expenses | Net |
@foreach($trend['labels'] as $i => $label)
| {{ $label }} |
{{ $metrics->money($trend['revenue'][$i]) }} |
{{ $metrics->money($trend['expenses'][$i]) }} |
{{ $metrics->money($trend['revenue'][$i] - $trend['expenses'][$i]) }} |
@endforeach
@endsection