@extends('admin.layouts.master') @section('title', '' . $user->name) @section('content')
@lang('PROFILE')
{{ $user->name }}

{{ $user->email }}

@lang('BALANCE') : {{ $user->balance }} {{ $general->currency }}
@lang('Invested Amount') : {{ $user->investLog->sum('invest_amount') }} {{ $general->currency }}
@lang('Deposit Amount') : {{ $user->deposits->sum('amount') }} {{ $general->currency }}
@lang('Total Referral') : {{ $user->refUser->count() }}

@lang('Joined') {{ $user->created_at->format('d/m/y h:i A') }}

@lang('User Ranking')
@csrf
@foreach ($rankings as $rank)
@endforeach
@lang('Wallet')
@foreach ($wallets as $item) @endforeach
@lang('Name') @lang('Address') @lang('Action')
{{ $item->wallet_name }} {{ $item->address }} @if ($item->status == 0) @lang('Active') @else @lang('Deactive') @endif
@lang('Update Profile')
{{ csrf_field() }} {{ method_field('put') }}
@lang('Name')
@lang('Mobile')
@lang('Gender')
@lang('Address')
@lang('Zip-Code')
@lang('City')
@lang('Country')
@lang('Status')
@lang('Premium User')
@endsection