@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Minutes Used This Month') }}

{{ number_format((float) ($summary['free_minutes_month'] + $summary['paid_minutes_month']), 2) }}

{{ __('Transcribe Tasks This Month') }}

{{ number_format((int) $summary['tasks_month']) }}

{{ __('New Users This Month') }}

{{ number_format((int) $summary['new_users_month']) }}

{{ __('Estimated Runtime Cost This Month') }}

{{ number_format((float) $summary['spending_month'], 2) }}

{{ __('Total Minutes Used This Year') }}

{{ number_format((float) $summary['total_minutes_year'], 2) }}

{{ __('Total Words This Year') }}

{{ number_format((int) $summary['total_words_year']) }}

{{ __('Registered Users This Year') }}

{{ number_format((int) $summary['total_users_year']) }}

{{ __('This build is focused on local runtime only. AWS, GCP, payment, activation, and upgrade metrics have been removed from the dashboard.') }}

@endsection