@extends('admin.layouts.app') @section('page_title', __('Dashboard')) @section('content')
@include('admin.partials.dashboard.recentTran') @include('admin.partials.dashboard.record')
@include('admin.partials.dashboard.order_records') @include('admin.partials.dashboard.orders') @include('admin.partials.dashboard.best_sellers')

@lang("Latest Users")

@lang("View All")
@forelse($latestUser as $user) @empty
Image Description Image Description

@lang("No data to show")

@endforelse
@lang('Full Name') @lang('Email-Phone') @lang('Balance') @lang('Country') @lang('Status') @lang('Last Login') @lang('Action')
id) }}">
{!! $user->profilePicture() !!}
{{ $user->firstname . ' ' . $user->lastname }}
{{'@'. $user->username }}
{{ $user->email }} {{ $user->phone }}
{{ currencyPosition($user->balance) }}
{{ $user->country ?? 'N/A' }} @if($user->status == 1) @lang("Active") @else @lang("Inactive") @endif {{ diffForHumans($user->last_login) }}
@include('admin.partials.dashboard.browserHistory')
@if($basicControl->is_active_cron_notification) @endif @include('admin.user_management.components.login_as_user') @include('admin.user_management.components.update_balance_modal') @endsection @push('js-lib') @endpush @push("script") @endpush @if($firebaseNotify) @push('script') @endpush @endif