@extends('admin.layouts.grid') @section('section', translate('Members')) @section('title', translate('Users')) @section('create', route('admin.members.users.create')) @section('container', 'container-max-xxl') @section('content')

{{ translate('Active') }}

{{ $counters['active'] }}

{{ translate('Banned') }}

{{ $counters['banned'] }}

@if (@$settings->kyc->status)

{{ translate('KYC Verified') }}

{{ $counters['kyc_verified'] }}

{{ translate('KYC Unverified') }}

{{ $counters['kyc_unverified'] }}

@endif

{{ translate('Email Verified') }}

{{ $counters['email_verified'] }}

{{ translate('Email Unverified') }}

{{ $counters['email_unverified'] }}

@if ($users->count() > 0)
@if (licenseType(2) && @$settings->premium->status) @endif @if (@$settings->kyc->status) @endif @foreach ($users as $user) @if (licenseType(2) && @$settings->premium->status) @endif @if (@$settings->kyc->status) @endif @endforeach
# {{ translate('User details') }} {{ translate('Username') }}{{ translate('Premium') }}{{ translate('Author') }} {{ translate('Account status') }}{{ translate('KYC Status') }}{{ translate('Email status') }} {{ translate('Registred date') }}
{{ $user->id }}
{{ $user->getName() }}
{{ $user->getName() }} @if ($user->isFeaturedAuthor()) {{ translate('Featured Author') }} @endif

{{ $user->email ? demo($user->email) : '--' }}

{{ '@' . $user->username ?? '--' }} @if ($user->isSubscribed()) {{ translate('Yes') }} @else {{ translate('No') }} @endif @if ($user->isAuthor()) {{ translate('Yes') }} @else {{ translate('No') }} @endif @if ($user->isActive()) {{ translate('Active') }} @else {{ translate('Banned') }} @endif @if ($user->isKycVerified()) {{ translate('Verified') }} @else {{ translate('Unverified') }} @endif @if ($user->isEmailVerified()) {{ translate('Verified') }} @else {{ translate('Unverified') }} @endif {{ dateFormat($user->created_at) }}
@else @include('admin.partials.empty', ['empty_classes' => 'empty-lg']) @endif
{{ $users->links() }} @push('styles_libs') @endpush @push('scripts_libs') @endpush @endsection