@extends('layouts.master') @section('styles') @endsection @section('content') @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('admin.dashboard')], ['label' => 'Users', 'url' => '#', 'active' => true], ['label' => '', 'url' => '#', 'active' => true], ]; @endphp
@php $profile = "https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mp&f=y"; if ($user->profile != null) { if (str_contains($user->profile, 'http')) { $profile = $user->profile; } else { $profile = asset('uploads/user/' . $user->profile); } } @endphp
{{ $user->name }}
{{ $user->email }}

@if($user->active_subscription==1) Premium VIP User @else Free Plan User @endif

UID: {{ $user->uid }} @if ($country) {{ $country->name }} @endif

  • Balance :{{ round($user->wallet->balance, 2) }}
  • Diamonds :{{ round($user->wallet->diamonds, 2) }}
  • LifeTime Earnings :{{ round($user->wallet->lifetime_earn, 2) }}
  • Total Referrals :{{ round($user->referral->ref_count, 2) }}
  • User IP :{{ $user->device->ip }}
  • Device :{{ $user->device->device_os }} {{ $user->device->device_model }}
  • App Version:{{ $user->device->app_version }}
  • Last Seen :{{ \Carbon\Carbon::parse($user->last_seen_at)->format('d M Y, h:i A') }}
  • User Status : @if($user->status==1) Active @elseif($user->status==0) InActive Last Time No Login @else Banned @endif
@php $columns = [ ['label' => 'Task'], ['label' => 'Amount'], ['label' => 'Offer ID'], ['label' => 'IP'], ['label' => 'Store Transaction'], ['label' => 'Date'], ]; @endphp
{{-- redeem history Tab --}}
@php $columns = [ ['label' => 'ID'], ['label' => 'Payout Method'], ['label' => 'Request To'], ['label' => 'Coins'], ['label' => 'GiftCode'], ['label' => 'IP'], ['label' => 'Status'], ['label' => 'Remark'], ['label' => 'Request Date'], ['label' => 'Update Date'], ]; @endphp
{{-- Profile Tab --}}
  • 😎 Personal Info :
    User ID :
    User Name :
    Email:
    ReferID:
    Subscription Type:
    @if($user->active_subscription==1) Premium VIP User @else Free Plan User @endif
    Country:
    IP:
    Account Type :
  • 🪪 Activity Info :
    Registered AT :
    Last Seen :
    Last Active Date :
    Users Satus :
    @if($user->status==1) Active @elseif($user->status==0) InActive Last Time No Login @else Banned @endif
    Ban Reason :
  • 💰 Wallets Info :
    Wallet Balance :
    Diamond Balance :
    Lifetime Earning :
    Refer Earning :
  • 📳 Device Info :
    Device :
    Is Device Emulator? :
    App Version Using :
{{-- subscription Tab --}}
@php $columns = [ ['label' => 'ID'], ['label' => 'Package | Benefit'], ['label' => 'Amount'], ['label' => 'Payment Method'], ['label' => 'Status'], ['label' => 'Purchased AT'], ['label' => 'Expired AT'], ]; @endphp
{{-- ad Tab --}}
{{--
--}}
@php $columns = [ ['label' => 'ID'], ['label' => 'Title'], ['label' => 'Media'], ['label' => 'Ad Type'], ['label' => 'Completed/Target'], ['label' => 'Status'], ['label' => 'Started AT'], ['label' => 'Updated AT'], ]; @endphp
{{-- friends Tab --}}
@csrf @slot('footer')
@endslot
@csrf @slot('footer')
@endslot
@php $btitle=($user->status==1) ? 'Ban' : 'Unban'; @endphp
@csrf @slot('footer')
@endslot
@endsection @section('scripts') @include('layouts.components.common-script') @vite('resources/assets/js/profile.js') {{-- load transaction data --}} @endsection