Update account information
- Joined: {{date("Y/m/d h:i:A", strtotime($client->created_at))}}
- Last Login: {{date("Y/m/d h:i:A", strtotime($client->last_login))}}
- Last Updated: {{date("Y/m/d h:i:A", strtotime($client->updated_at))}}
- IP Address: {{$client->ip_address}}
Kyc verification
| # | Status | Action |
|---|---|---|
| @if($client->kyc_status==0) Unverified @else Verified @endif | @if(!empty($client->kyc_link)) View @else No file @endif | @if($client->kyc_status!=1) @if(!empty($client->kyc_link)) @endif @endif |
Deposit Logs
| S/N | Amount | BTC | Method | Ref | Charge | Status | Created | Updated | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{++$k}}. | {{number_format($val->amount).$currency->name}} | {{convertFloat($val->btc_amo)}}BTC | {{$val->gateway['name']}} | {{$val->trx}} | {{number_format($val->charge).$currency->name}} | @if($val->status==0) Pending @elseif($val->status==1) Approved @endif | {{date("Y/m/d h:i:A", strtotime($val->created_at))}} | {{date("Y/m/d h:i:A", strtotime($val->updated_at))}} |
Withdraw logs
| S/N | Amount | Details | Status | Type | Created | Updated | Action |
|---|---|---|---|---|---|---|---|
| {{++$k}}. | {{substr($val->amount,0,9)}}BTC | {{$val->details}} | @if($val->status==0) Unpaid @elseif($val->status==1) Paid @elseif($val->status==2) Declined @endif | @if($val->type==1) Trading profit @elseif($val->type==2) Account balance @elseif($val->type==3) Referral bonus @endif | {{date("Y/m/d h:i:A", strtotime($val->created_at))}} | {{date("Y/m/d h:i:A", strtotime($val->updated_at))}} |
Investment
| S/N | Ref | Amount | Plan | Daily percent | Duration | Profit | Created | Updated | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{++$k}}. | {{$val->trx}} | {{substr($val->amount,0,9)}}BTC | {{$val->plan->name}} | {{$val->plan->percent}}% | {{$val->plan->duration.$val->plan->period}}(s) | {{substr($val->profit,0,9)}}BTC | {{date("Y/m/d", strtotime($val->created_at))}} | {{date("Y/m/d h:i:A", strtotime($val->updated_at))}} |
Ticket
| S/N | Username | Priority | Ticket ID | Status | Subject | Created | Updated | Action |
|---|---|---|---|---|---|---|---|---|
| {{++$k}}. | {{$val->user->username}} | {{$val->priority}} | {{$val->ticket_id}} | @if($val->status==0) Open @elseif($val->status==1) Closed @elseif($val->status==2) Resolved @endif | {{$val->subject}} | {{date("Y/m/d", strtotime($val->date))}} | {{date("Y/m/d h:i:A", strtotime($val->updated_at))}} |
Transfer logs
| S/N | Ref | Sender | Receiver | Amount | Created | Updated |
|---|---|---|---|---|---|---|
| {{++$k}}. | {{$val->ref_id}} | {{$val->sender->name}} | {{$val->receiver->name}} | {{substr($val->amount,0,9)}}BTC | {{date("Y/m/d", strtotime($val->created_at))}} | {{date("Y/m/d h:i:A", strtotime($val->updated_at))}} | @endforeach
Earnings
| S/N | Amount | Username | Created | Updated |
|---|---|---|---|---|
| {{++$k}}. | {{substr($val->amount,0,9)}}BTC | {{$val->user['username']}} | {{date("Y/m/d", strtotime($val->created_at))}} | {{date("Y/m/d h:i:A", strtotime($val->updated_at))}} | @endforeach
Referrals
| S/N | Name | Username | Created | Updated |
|---|---|---|---|---|
| {{++$k}}. | {{$val->user->name}} | {{$val->user->username}} | {{date("Y/m/d", strtotime($val->created_at))}} | {{date("Y/m/d h:i:A", strtotime($val->updated_at))}} | @endforeach