<?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();
}
}
Kueue Pay API responses include standard HTTP status codes to indicate the success or failure of a request. Successful responses will have a status code of 200 OK, while various error conditions will be represented by different status codes along with error messages in the response body.