<table class="custom-table user-search-table">
<thead>
<tr>
<th></th>
<th>{{ __("username") }}</th>
<th>{{ __("Email") }}</th>
<th>{{ __("Phone") }}</th>
<th>{{ __("Status") }}</th>
<th>{{ __("Action") }}</th>
</tr>
</thead>
<tbody>
@forelse ($users ?? [] as $key => $item)
<tr>
<td>
<ul class="user-list">
<li><img src="{{ @$item->userImage }}" alt="user"></li>
</ul>
</td>
<td><span>{{ $item->username ?? '' }}</span></td>
<td>{{ $item->email ?? '' }}</td>
<td>{{ $item->full_mobile ?? '' }}</td>
<td>
@if (Route::currentRouteName() == "admin.users.kyc.unverified")
<span class="{{ @$item->kycStringStatus->class }}">{{ @$item->kycStringStatus->value }}</span>
@else
<span class="{{ @$item->stringStatus->class }}">{{ @$item->stringStatus->value }}</span>
@endif
</td>
<td>
@if (Route::currentRouteName() == "admin.users.kyc.unverified")
@include('admin.components.link.info-default',[
'href' => setRoute('admin.users.kyc.details', @$item->username),
'permission' => "admin.users.kyc.details",
])
@else
@include('admin.components.link.info-default',[
'href' => setRoute('admin.users.details', @$item->username),
'permission' => "admin.users.details",
])
@endif
</td>
</tr>
@empty
@include('admin.components.alerts.empty',['colspan' => 7])
@endforelse
</tbody>
</table>
Checks the status of a payment.
**Response: SUCCESS (200 OK)**
{
"message": {
"success": [
"Success"
]
},
"data": {
"token": "2zMRmT3KeYT2BWMAyGhqEfuw4tOYOfGXKeyKqehZ8mF1E35hMwE69gPpyo3e",
"trx_id": "CP44657864",
"payer": {
"username": "testuser",
"email": "user@appdevs.net"
}
"status": "Test",
},
"type": "success"
}