/home/kueuepay/public_html/app/Http/Controllers/Admin/NFCPayConfigController.php
<?php

namespace App\Http\Controllers\Admin;

use Exception;
use Illuminate\Http\Request;
use App\Models\Admin\NFCPayConfig;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Validator;

class NFCPayConfigController extends Controller
{
    /**
     * Method for nfc pay view page
     * @return view 
     */
    public function index(){
        $page_title     = "NFCPay Configuration";
        $data           = NFCPayConfig::first();

        return view('admin.sections.nfc-pay.index',compact(
            'page_title',
            'data'
        ));
    }
    /**
     * Method for update nfcpay information
     * @param $slug
     * @param Illuminate\Http\Request $request
     */
    public function update(Request $request,$slug){
        $data               = NFCPayConfig::where('slug',$slug)->first();
        if(!$data) return back()->with(['error' => ['Configuration data not found!']]);
        $validator          = Validator::make($request->all(),[
            'name'          => 'required|string',
            'env'           => 'required|string',
            'version'       => 'required',
            'image'         => 'nullable'
        ]);
        if($validator->fails()) return back()->withErrors($validator)->withInput($request->all());
        
        $image = $data->image;
        if($request->hasFile('image')){
            $image = get_files_from_fileholder($request,'image');
            $upload_image = upload_files_from_path_dynamic($image,'nfcpay-config',$data->image);
            $image = $upload_image;
        }
        try{
            $data->update([
                'admin_id'      => auth()->user()->id,
                'name'          => $request->name,
                'image'         => $image,
                'env'           => $request->env,
                'version'       => $request->version
            ]);
        }catch(Exception $e){
           return back()->with(['error' => ['Something went wrong! Please try again.']]); 
        }
        return back()->with(['success'  => ['Information updated successfully.']]);
    }
}
Save Card
top

Save Your Card for Quick and Easy Future Payments Online

Simplify your payment experience by securely saving your card on our platform. After your initial transaction, you can choose to store your card details safely for future use. This feature eliminates the need to re-enter your payment information each time, making checkouts faster while keeping your data secure with advanced encryption and robust security measures.

  • Navigate to the “Save Card” section.
  • Click on “Add Card.”
  • Choose your preferred setup method.
  • Your card is now saved for future payments.
img