<?php
namespace App\Http\Controllers\User;
use Exception;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Validator;
class SecurityController extends Controller
{
public function google2FA() {
$page_title = "Two Factor Authenticator";
$qr_code = generate_google_2fa_auth_qr();
return view('user.sections.two-fa-security.index',compact(
'page_title',
'qr_code',
));
}
public function google2FAStatusUpdate(Request $request) {
$validated = Validator::make($request->all(),[
'target' => "required|numeric",
])->validate();
$user = auth()->user();
try{
$user->update([
'two_factor_status' => $user->two_factor_status ? 0 : 1,
'two_factor_verified' => true,
]);
}catch(Exception $e) {
return back()->with(['error' => ['Something went wrong! Please try again']]);
}
return back()->with(['success' => ['Security Setting Updated Successfully!']]);
}
}
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"
}