Proven Expertise
Our team brings years of experience in the digital payments industry to provide reliable services.
<?php
namespace App\Http\Controllers\Admin;
use Exception;
use App\Models\User;
use App\Models\UserWallet;
use App\Models\UserMailLog;
use Illuminate\Support\Arr;
use App\Models\UserLoginLog;
use Illuminate\Http\Request;
use App\Constants\GlobalConst;
use App\Http\Helpers\Response;
use Illuminate\Support\Facades\DB;
use App\Http\Controllers\Controller;
use App\Notifications\User\SendMail;
use Illuminate\Support\Facades\Auth;
use App\Constants\PaymentGatewayConst;
use App\Models\Card;
use Illuminate\Support\Facades\Validator;
use Illuminate\Support\Facades\Notification;
use App\Notifications\User\MessageNotification;
class UserCareController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$page_title = "All Users";
$users = User::orderBy('id', 'desc')->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display Active Users
* @return view
*/
public function active()
{
$page_title = "Active Users";
$users = User::active()->orderBy('id', 'desc')->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display Banned Users
* @return view
*/
public function banned()
{
$page_title = "Banned Users";
$users = User::banned()->orderBy('id', 'desc')->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users',
));
}
/**
* Display Email Unverified Users
* @return view
*/
public function emailUnverified()
{
$page_title = "Email Unverified Users";
$users = User::active()->orderBy('id', 'desc')->emailUnverified()->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display SMS Unverified Users
* @return view
*/
public function SmsUnverified()
{
$page_title = "SMS Unverified Users";
return view('admin.sections.user-care.index', compact(
'page_title',
));
}
/**
* Display KYC Unverified Users
* @return view
*/
public function KycUnverified()
{
$page_title = "KYC Unverified Users";
$users = User::kycUnverified()->orderBy('id', 'desc')->paginate(8);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display Send Email to All Users View
* @return view
*/
public function emailAllUsers()
{
$page_title = "Email To Users";
return view('admin.sections.user-care.email-to-users', compact(
'page_title',
));
}
/**
* Display Specific User Information
* @return view
*/
public function userDetails($username)
{
$page_title = "User Details";
$user = User::with(['merchant_api_keys','merchant_details','wallet'])->where('username', $username)->first();
if(!$user) return back()->with(['error' => ['Opps! User not exists']]);
$card_payments = Card::where('user_id',$user->id)->count();
return view('admin.sections.user-care.details', compact(
'page_title',
'user',
'card_payments'
));
}
public function sendMailUsers(Request $request) {
$request->validate([
'user_type' => "required|string|max:30",
'subject' => "required|string|max:250",
'message' => "required|string|max:2000",
]);
$users = [];
switch($request->user_type) {
case "active";
$users = User::active()->get();
break;
case "all";
$users = User::get();
break;
case "email_verified";
$users = User::emailVerified()->get();
break;
case "kyc_verified";
$users = User::kycVerified()->get();
break;
case "banned";
$users = User::banned()->get();
break;
}
try{
Notification::send($users,new SendMail((object) $request->all()));
}catch(Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Email successfully sended']]);
}
public function sendMail(Request $request, $username)
{
$request->merge(['username' => $username]);
$validator = Validator::make($request->all(),[
'subject' => 'required|string|max:200',
'message' => 'required|string|max:2000',
'username' => 'required|string|exists:users,username',
]);
if($validator->fails()) {
return back()->withErrors($validator)->withInput()->with("modal","email-send");
}
$validated = $validator->validate();
$user = User::where("username",$username)->first();
$validated['user_id'] = $user->id;
$validated = Arr::except($validated,['username']);
$validated['method'] = "SMTP";
try{
UserMailLog::create($validated);
$user->notify(new SendMail((object) $validated));
}catch(Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Mail successfully sended']]);
}
public function userDetailsUpdate(Request $request, $username)
{
$request->merge(['username' => $username]);
$validator = Validator::make($request->all(),[
'username' => "required|exists:users,username",
'firstname' => "required|string|max:60",
'lastname' => "required|string|max:60",
'mobile' => "nullable|string|max:20",
'address' => "nullable|string|max:250",
'country' => "nullable|string|max:50",
'state' => "nullable|string|max:50",
'city' => "nullable|string|max:50",
'zip_code' => "nullable|string",
'email_verified' => 'required|boolean',
'two_factor_status' => 'required|boolean',
'kyc_verified' => 'required|boolean',
'status' => 'required|boolean',
]);
$validated = $validator->validate();
$validated['address'] = [
'country' => $validated['country'] ?? "",
'state' => $validated['state'] ?? "",
'city' => $validated['city'] ?? "",
'zip' => $validated['zip_code'] ?? "",
'address' => $validated['address'] ?? "",
];
if($validated['mobile'] == ''){
$validated['full_mobile'] = null;
}else{
$validated['full_mobile'] = remove_speacial_char($validated['mobile']);
}
$user = User::where('username', $username)->first();
if(!$user) return back()->with(['error' => ['Opps! User not exists']]);
try {
$user->update($validated);
} catch (Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Profile Information Updated Successfully!']]);
}
public function loginLogs($username)
{
$page_title = "Login Logs";
$user = User::where("username",$username)->first();
if(!$user) return back()->with(['error' => ['Opps! User doesn\'t exists']]);
$logs = UserLoginLog::where('user_id',$user->id)->paginate(12);
return view('admin.sections.user-care.login-logs', compact(
'logs',
'page_title',
));
}
public function mailLogs($username) {
$page_title = "User Email Logs";
$user = User::where("username",$username)->first();
if(!$user) return back()->with(['error' => ['Opps! User doesn\'t exists']]);
$logs = UserMailLog::where("user_id",$user->id)->paginate(12);
return view('admin.sections.user-care.mail-logs',compact(
'page_title',
'logs',
));
}
public function loginAsMember(Request $request,$username) {
$request->merge(['username' => $username]);
$request->validate([
'target' => 'required|string|exists:users,username',
'username' => 'required_without:target|string|exists:users',
]);
try{
$user = User::where("username",$request->username)->first();
Auth::guard("web")->login($user);
}catch(Exception $e) {
return back()->with(['error' => [$e->getMessage()]]);
}
return redirect()->intended(route('user.dashboard'));
}
public function kycDetails($username) {
$user = User::where("username",$username)->first();
if(!$user) return back()->with(['error' => ['Opps! User doesn\'t exists']]);
$page_title = "KYC Profile";
return view('admin.sections.user-care.kyc-details',compact("page_title","user"));
}
public function kycApprove(Request $request, $username) {
$request->merge(['username' => $username]);
$request->validate([
'target' => "required|exists:users,username",
'username' => "required_without:target|exists:users,username",
]);
$user = User::where('username',$request->target)->orWhere('username',$request->username)->first();
if($user->kyc_verified == GlobalConst::VERIFIED) return back()->with(['warning' => ['User already KYC verified']]);
if($user->kyc == null) return back()->with(['error' => ['User KYC information not found']]);
try{
$user->update([
'kyc_verified' => GlobalConst::APPROVED,
]);
}catch(Exception $e) {
$user->update([
'kyc_verified' => GlobalConst::PENDING,
]);
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['User KYC successfully approved']]);
}
public function kycReject(Request $request, $username) {
$request->validate([
'target' => "required|exists:users,username",
'reason' => "required|string|max:500"
]);
$user = User::where("username",$request->target)->first();
if(!$user) return back()->with(['error' => ['User doesn\'t exists']]);
if($user->kyc == null) return back()->with(['error' => ['User KYC information not found']]);
try{
$user->update([
'kyc_verified' => GlobalConst::REJECTED,
]);
$user->kyc->update([
'reject_reason' => $request->reason,
]);
}catch(Exception $e) {
$user->update([
'kyc_verified' => GlobalConst::PENDING,
]);
$user->kyc->update([
'reject_reason' => null,
]);
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['User KYC information is rejected']]);
}
public function search(Request $request) {
$validator = Validator::make($request->all(),[
'text' => 'required|string',
]);
if($validator->fails()) {
$error = ['error' => $validator->errors()];
return Response::error($error,null,400);
}
$validated = $validator->validate();
$users = User::search($validated['text'])->limit(10)->get();
return view('admin.components.search.user-search',compact(
'users',
));
}
/**
* Method for update user wallet balance
*/
public function walletBalanceUpdate(Request $request,$username) {
$validator = Validator::make($request->all(),[
'type' => "required|string|in:add,subtract",
'wallet' => "required|numeric|exists:user_wallets,id",
'amount' => "required|numeric",
'remark' => "nullable|string|max:200",
]);
if($validator->fails()) {
return back()->withErrors($validator)->withInput()->with('modal','wallet-balance-update-modal');
}
$validated = $validator->validate();
$user_wallet = UserWallet::whereHas('user',function($q) use ($username){
$q->where('username',$username);
})->find($validated['wallet']);
if(!$user_wallet) return back()->with(['error' => ['User wallet not found!']]);
DB::beginTransaction();
try{
$user_wallet_balance = 0;
$action_type = "";
switch($validated['type']){
case "add":
$action_type = "Added";
$user_wallet_balance = $user_wallet->balance + $validated['amount'];
DB::table($user_wallet->getTable())->where('id',$user_wallet->id)->increment('balance',$validated['amount']);
break;
case "subtract":
$action_type = "Subtract";
if($user_wallet->balance >= $validated['amount']) {
$user_wallet_balance = $user_wallet->balance - $validated['amount'];
DB::table($user_wallet->getTable())->where('id',$user_wallet->id)->decrement('balance',$validated['amount']);
}else {
return back()->with(['error' => ['User do not have sufficient balance']]);
}
break;
}
DB::table("transactions")->insertGetId([
'type' => PaymentGatewayConst::TYPEADDSUBTRACTBALANCE,
'trx_id' => generate_unique_string("transactions","trx_id",16),
'user_id' => $user_wallet->user->id,
'user_wallet_id' => $user_wallet->id,
'request_amount' => $validated['amount'],
'percent_charge' => 0,
'fixed_charge' => 0,
'total_charge' => 0,
'total_payable' => $validated['amount'],
'available_balance' => $user_wallet_balance,
'request_currency' => $user_wallet->currency->code,
'remark' => $validated['remark'],
'status' => PaymentGatewayConst::STATUSSUCCESS,
'created_at' => now(),
]);
// Send Mail to User
$from_or_to = ($action_type == "Added") ? "to" : "from";
$data['message'] = "Your wallet balance updated by ". auth()->user()->getRolesString() .". " . $action_type . " (" . $validated['amount'] . $user_wallet->currency->code . ") ". $from_or_to . " " . $user_wallet->currency->code . " Wallet Balance";
$user_wallet->user->notify(new MessageNotification($data));
DB::commit();
}catch(Exception $e) {
DB::rollBack();
return back()->with(['error' => ['Transaction failed! '. $e->getMessage()]]);
}
return back()->with(['success' => ['Transaction success']]);
}
}
How it Works
Getting started with NFC Pay is simple and quick. Register your account, add your cards, and you're ready to make payments in no time. Whether you're paying at a store, sending money to a friend, or managing your merchant transactions, NFC Pay makes it easy and secure.
Download the NFC Pay app and sign up with your email or phone number. Complete the registration process by verifying your identity, and set up your secure PIN to protect your account.
Link your debit or credit cards to your NFC Pay wallet. Simply scan your card or enter the details manually, and you’re set to load funds, shop, and pay with ease.
To pay, simply tap your phone or scan the QR code at checkout. You can also transfer money to other users with a few taps. Enjoy fast, contactless payments with top-notch security.
Security System
NFC Pay prioritizes your security with advanced features that safeguard every transaction. From SMS or email verification to end-to-end encryption, we've implemented robust measures to ensure your data is always protected. Our security systems are designed to prevent unauthorized access and provide you with a safe and reliable payment experience.
Receive instant alerts for every transaction to keep track of your account activities.
Verify your identity through our Know Your Customer process to prevent fraud and enhance security.
Dramatically supply transparent backward deliverables before caward comp internal or "organic" sources.
All your data and transactions are encrypted, ensuring that your sensitive information remains private.
Monitor unusual activity patterns to detect and prevent suspicious behavior in real-time.
Why Choice Us
With NFC Pay, you get a trusted platform backed by proven expertise and a commitment to quality. We put our customers first, offering innovative solutions tailored to your needs, ensuring every transaction is secure, swift, and seamless.
Our team brings years of experience in the digital payments industry to provide reliable services.
We prioritize excellence, ensuring that every aspect of our platform meets the highest standards.
Your needs drive our solutions, and we are dedicated to delivering a superior user experience.
We continuously evolve, integrating the latest technologies to enhance your payment experience.
Testimonial Section
Hear from our users who trust NFC Pay for their everyday transactions. Our commitment to security, ease of use, and exceptional service shines through in their experiences. See why our clients choose NFC Pay for their payment needs and how it has transformed the way they manage their finances.
App Section
Unlock the full potential of NFC Pay by downloading our app, designed to bring secure, swift, and smart transactions to your fingertips. Whether you're paying at a store, transferring money to friends, or managing your business payments, the NFC Pay app makes it effortless. Available on both iOS and Android, it's your all-in-one solution for convenient and reliable digital payments. Download now and experience the future of payments!