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

{{ $user->name }}

{{ number_format($user->available_words + $user->available_words_prepaid) }} / {{ number_format($user->total_words) }}

{{ __('Words Left') }}

{{ number_format($user->available_images + $user->available_images_prepaid) }} / {{ number_format($user->total_images) }}

{{ __('Images Left') }}

{{ number_format($user->available_chars + $user->available_chars_prepaid) }} / {{ number_format($user->total_chars) }}

{{ __('Characters Left') }}

{{ number_format($user->available_minutes + $user->available_minutes_prepaid) }} / {{ number_format($user->total_minutes) }}

{{ __('Minutes Left') }}
User Avatar

{{ $user->name }}

{{ $user->job_role }}
{{ __('Full Name') }} {{ $user->name }}
{{ __('Email') }} {{ $user->email }}
{{ __('User Status') }} {{ ucfirst($user->status) }}
{{ __('User Group') }} {{ ucfirst($user->group) }}
{{ __('Referral ID') }} {{ $user->referral_id }}
{{ __('Registered On') }} {{ $user->created_at }}
{{ __('Last Updated On') }} {{ $user->updated_at }}
{{ __('Job Role') }} {{ $user->job_role }}
{{ __('Company') }} {{ $user->company }}
{{ __('Website') }} {{ $user->website }}
{{ __('Address') }} {{ $user->address }}
{{ __('Postal Code') }} {{ $user->postal_code }}
{{ __('City') }} {{ $user->city }}
{{ __('Country') }} {{ $user->country }}
{{ __('Phone') }} {{ $user->phone_number }}

{{ __('Words Generated') }}

{{ number_format($data['words']) }} {{ __('words') }}

{{ __('Images Created') }}

{{ number_format($data['images']) }} {{ __('images') }}

{{ __('Subscription ') }}

@if ($user_subscription == '')

{{ __('Free Trial') }}

{{ __('No Subscription ') }} / {!! config('payment.default_system_currency_symbol') !!}0.00 {{ __('Per Month') }}
@else

@if ($user_subscription->payment_frequency == 'monthly') {{ __('Monthly Subscription') }} @elseif($user_subscription->payment_frequency == 'yearly') {{ __('Yearly Subscription') }} @else {{ __('Lifetime Subscription') }} @endif

{{ $user_subscription->plan_name }} {{ __('Plan') }} / {!! config('payment.default_system_currency_symbol') !!}{{ $user_subscription->price }} @if ($user_subscription->payment_frequency == 'monthly') {{ __('Per Month') }} @elseif ($user_subscription->payment_frequency == 'yearly') {{ __('Per Year') }} @else {{ __('One Time Payment') }} @endif
@endif
@if ($user_subscription == '') {{ __('Total one time words available ') }} {{ number_format($user->available_words) }}. {{ __('Total prepaid words available ') }} {{ number_format($user->available_words_prepaid) }}. @else {{ __('Total words available via subscription plan ') }} {{ number_format($user->available_words) }} {{ __(' out of ') }} {{ number_format($user->total_words) }}. {{ __('Total prepaid words available ') }} {{ number_format($user->available_words_prepaid) }}. @endif
@if ($subscription)
@if ($user_subscription->payment_frequency == 'lifetime') {{ __('Subscription renewal date') }}: {{ __('Never') }} @else {{ __('Subscription renewal date') }}: {{ $subscription->active_until }} @endif
@endif

{{ __('Words & Images Generated') }} ({{ __('Current Year') }})

@endsection @section('js') @endsection