@extends('header') @section('content')
{{ $totalIncome }}
in total revenue
{{ $billedClients }}
{{ Utils::pluralize('billed client', $billedClients) }}
{{ $invoicesSent }}
{{ Utils::pluralize('invoice', $invoicesSent) }} sent

 

Notifications

    @foreach ($activities as $activity)
  • {{ Utils::timestampToDateString(strtotime($activity->created_at)) }}: {{ Utils::decodeActivity($activity->message) }}
  • @endforeach

Invoices Past Due

@foreach ($pastDue as $invoice) @endforeach
Invoice # Client Due date Balance due
{{ $invoice->getLink() }} {{ $invoice->client->getDisplayName() }} {{ Utils::fromSqlDate($invoice->due_date) }} {{ Utils::formatMoney($invoice->balance, $invoice->client->currency_id) }}

Upcoming invoices

@foreach ($upcoming as $invoice) @endforeach
Invoice # Client Due date Balance due
{{ $invoice->getLink() }} {{ $invoice->client->getDisplayName() }} {{ Utils::fromSqlDate($invoice->due_date) }} {{ Utils::formatMoney($invoice->balance, $invoice->client->currency_id) }}
{{ $activeClients }}
{{ Utils::pluralize('active client', $activeClients) }}
Average invoice
{{ $invoiceAvg }}
@stop