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

{{ auth()->user()->name }}

{{ auth()->user()->job_role }}
{{ __('Edit Profile') }}
{{ __('Full Name') }}{{ auth()->user()->name }}
{{ __('Job Role') }}{{ auth()->user()->job_role }}
{{ __('Company') }}{{ auth()->user()->company }}
{{ __('Website') }}{{ auth()->user()->website }}
{{ __('City') }}{{ auth()->user()->city }}
{{ __('Country') }}{{ auth()->user()->country }}
{{ __('Email') }}{{ auth()->user()->email }}
{{ __('Phone') }}{{ auth()->user()->phone_number }}
{{ __('Audio Language') }}{{ $language_file }}
{{ __('Live Language') }}{{ $language_live }}
{{ __('Default Project') }}{{ ucfirst((string) auth()->user()->default_project) }}

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

({{ __('Current Month') }})

{{ number_format((float) (($user_data_month['total_minutes'][0]['data'] ?? 0) / 60), 2) }}

{{ __('Total Words Generated') }}

({{ __('Current Month') }})

{{ number_format((int) ($user_data_month['total_words'][0]['data'] ?? 0)) }}

{{ __('Audio Files Transcribed') }}

({{ __('Current Month') }})

{{ number_format((int) ($user_data_month['total_audio_files'][0]['data'] ?? 0)) }}

{{ __('Speech to Text Usage') }} ({{ __('Current Year') }})

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

{{ number_format((float) (($user_data_year['total_minutes'][0]['data'] ?? 0) / 60), 2) }}

{{ __('Total Words Generated') }}

{{ number_format((int) ($user_data_year['total_words'][0]['data'] ?? 0)) }}

{{ __('File Results') }}

{{ number_format((int) ($user_data_year['total_file_transcribe'][0]['data'] ?? 0)) }}

{{ __('Record Results') }}

{{ number_format((int) ($user_data_year['total_recording_transcribe'][0]['data'] ?? 0)) }}

{{ __('Live Results') }}

{{ number_format((int) ($user_data_year['total_live_transcribe'][0]['data'] ?? 0)) }}

{{ __('Subscription and payment widgets have been removed in this internal-only build.') }}

@endsection