@extends('admin.layouts.app') @section('page_title',__('View Profile')) @section('content')
@include('admin.user_management.components.header_user_profile')

@lang('Profile')

  • @lang('About')
  • @lang($user->firstname . ' ' . $user->lastname)
  • @lang('@' . $user->username)
  • @if(isset($user->country))
  • @lang($user->country)
  • @endif
  • {{ currencyPosition($user->balance) }}
  • @lang('Contacts')
  • {{ $user->email }}
  • {{ $user->phone }}
Image Description Image Description

@lang('2-step verification')

@lang('Protect your account now and enable 2-step verification in the settings.')

@csrf

@lang('Transaction')

@if(count($transactions) == 0)
Image Description Image Description

@lang('No data to show')

@endif @if(0 < count($transactions))
@forelse($transactions as $key => $transaction) @empty @endforelse
@lang('No.') @lang('TRX') @lang('Amount') @lang('Remarks') @lang('Date-Time')
{{ $loop->index + 1 }} {{ $transaction->trx_id }}
{{ $transaction->trx_type . currencyPosition($transaction->amount) }}
@lang($transaction->remarks) {{ dateTime($transaction->created_at, 'd M Y h:i A') }}
@endif

@lang('Payment Log')

@if(count($paymentLog) == 0)
Image Description Image Description

@lang('No data to show')

@endif @if(0 < count($paymentLog))
@forelse($paymentLog as $key => $payment) @empty @endforelse
@lang('No.') @lang('TRX') @lang('Method') @lang('Amount') @lang('status') @lang('Date')
{{ $loop->index + 1 }} {{ $payment->trx_id }}
Image Description
@lang(optional($payment->gateway)->name)
{{ currencyPosition($payment->payable_amount_in_base_currency) }}
@if ($payment->status == 1) @lang('Successful') @elseif($payment->status == 2) @lang('Pending') @elseif($payment->status == 3) @lang('Cancel') @elseif($payment->status == 4) @lang('Failed') @endif {{ dateTime($payment->created_at, 'd M Y h:i A') }}
@endif
@include('admin.user_management.components.login_as_user') @include('admin.user_management.components.update_balance_modal') @include('admin.user_management.components.block_profile_modal') @endsection @push('script') @endpush