@extends('components.admin-layout') @section('content')

All Customers

Profile
Name
Email
Phone
USD Balance
FLT Balance
Joined At
Status
{{--
Edit
--}}
Action
@foreach ($users as $user)
{{-- @if ($user->phone) {{ $user->usd_balance }} @else **** @endif --}} ${{ $user->usd_balance }}
  • {{-- @if ($user->isverified) Verified @else Not Verified @endif --}} {{ $user->flt_balance }}
{{ date('d M,Y', strtotime($user->createdAt)) }}
@if ($user->isUserSuspended == 'FALSE') Active @else Suspended @endif
{{--
--}}
--}} @endif
  • Delete User
  • @if ($user->isUserSuspended == 'FALSE') Suspend User @endif
  • @if ($user->walletConnectEnabled == 'FALSE') Enable WalletConnect @else Disable WalletConnect @endif
  • @if ($user->isDocumentApproved == "TRUE")
  • Revoke KYC
  • @endif
  • Make User Admin
  • Send Email To User
  • @endforeach
    @if ($users->count() < 1) @endif
    {{--
    {{ $users->links() }}
    --}}
    {{ $users->links() }}
    @endsection