@hasrole('admin')
@if (config('settings.admin_companies_enabled',true))
{{ __('Users')}}
{{ $dashboard['total_users'] }}

{{ $dashboard['users_this_month'] }} {{ __('this month') }}

@endif @if (config('settings.enable_pricing'))
{{ __('Paying clients')}}
{{ $dashboard['total_paying_users'] }}

{{ $dashboard['total_paying_users_this_month'] }} {{ __('this month') }}

{{ __('MRR')}}
{{ $dashboard['mrr'] }}
{{ __('ARR')}}
{{ $dashboard['arr'] }}
@else
{{ __('Documents')}}
{{ $dashboard['total_docs_np'] }}

{{ $dashboard['month_docs_np'] }} {{ __('this month') }}

{{ __('This month')}}
{{ $dashboard['month'] }}

{{ $dashboard['month_docs'] }} {{ __('Documents') }}

{{ __('Total')}}
{{ $dashboard['total'] }}

{{ $dashboard['total_docs'] }} {{ __('Documents') }}

@endif
@endhasrole @hasrole('admin') @section('dashboard_content2') @if (config('settings.admin_companies_enabled',true))

{{ __('Latest companies') }}

@if (config('settings.enable_pricing')) @endif @foreach ( $dashboard['clients'] as $client ) @if ($client->user) @if (config('settings.enable_pricing')) @endif @endif @endforeach
{{ __('Company') }} {{ __('Creation Date') }} {{ __('Name') }} {{ __('Email') }}{{ __('Plan') }}
{{ $client->name }} {{ $client->created_at->locale(Config::get('app.locale'))->isoFormat('LLLL') }} {{ $client->user->name }} {{ $client->user->email }} @isset($dashboard['plans']) @isset($dashboard['plans'][$client->user->plan_id]) {{ $dashboard['plans'][$client->user->plan_id] }} @endisset @endisset {{ __('Login as') }} @if (config('settings.show_company_page',true)) {{ __('View it') }} @endif
@endif @endsection @endhasrole