@extends('layout.marketing_template') @section('marketingContent')
Total Deposit
Total Withdraw
Total Account
| Id | Account Id | Amount | Payment Method | Note | Comment | Status | Date |
|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $deposit->accountID }} | {{ $deposit->amount }} | {{ $deposit->paymentmethod }} | {{ $deposit->note }} | {{ $deposit->comment }} | @if ($deposit->status == '0') Pending @elseif($deposit->status == '1') Approved @elseif($deposit->status == '2') Rejected @endif | {{ date('Y-m-d', strtotime($deposit->created_at)) }} |
| Id | Account Id | Amount | Withdraw To | Payment Method | Note | Comment | Status | Date |
|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $withdraw->accountID }} | {{ $withdraw->amount }} | {{ $withdraw->withdraw_to }} | {{ $withdraw->paymentmethod }} | {{ $withdraw->note }} | {{ $withdraw->comment }} | @if ($withdraw->status == '0') Pending @elseif($withdraw->status == '1') Approved @elseif($withdraw->status == '2') Rejected @endif | {{ date('Y-m-d', strtotime($withdraw->created_at)) }} |
| Id | accountid | Group Name | Investor Password | Main Password | Date |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $account->accountID }} | {{ $account->groupname }} | {{ $account->investpass }} | {{ $account->mainpass }} | {{ date('Y-m-d', strtotime($account->created_at)) }} |
| Id | Name | User Agent | IP Address | Date |
|---|---|---|---|---|
| {{ $key + 1 }} | {{ $loginactivity->user_name }} | {{ $loginactivity->user_agent }} | {{ $loginactivity->ip_address }} | {{ date('Y-m-d', strtotime($loginactivity->created_at)) }} |