<?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!']]);
}
}
Contact Section
We’d love to hear from you! Whether you have questions, feedback, or need support, our team is here to help. Reach out to us via email, phone, or visit our office. We’re committed to providing you with exceptional service and ensuring your experience with NFC Pay is seamless and satisfying. Let’s connect!