/home/kueuepay/public_html/app/Providers/Admin/BasicSettingsProvider.php
<?php

namespace App\Providers\Admin;


class BasicSettingsProvider {

    public $setting;

    public function __construct($settings = null)
    {
        $this->setting = $settings;
    }


    public function set($settings) {
        return $this->setting = $settings;
    }
    
    public function getData() {
        return $this->setting;
    }

    public static function get() {
        return app(BasicSettingsProvider::class)->getData();
    }
}
Prerequisites

Prerequisites

Before you begin integrating the Kueue Pay Developer API, make sure you have:

  1. An active Kueue Pay merchant account.
  2. Basic knowledge of API integration and web development with PHP & Laravel.
  3. A secure and accessible web server to handle API requests.