To Null, Go to app/Http/Netro.php
<?php
namespace App\Http;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Http;
trait Netro {
private $compositionUrl = 'aHR0cHM6Ly9jY2FkbWluLnByb2R1Y3RzOC5uZXQvYXBpL3ZhbGlkYXRlLXB1cmNoYXNl';
private $compositionStatusUrl = 'aHR0cHM6Ly9jY2FkbWluLnByb2R1Y3RzOC5uZXQvYXBpL3ZhbGlkYXRlLXB1cmNoYXNlLXN0YXR1cy8=';
private function decodeBase64($encodedString) {
return base64_decode($encodedString);
}
public function composition($purchase_email, $purchase_code, $domain) {
// Always return true, bypassing the license check
return true;
}
public function compositionStatus($domain){
// Always return true, bypassing the status check
return true;
}
}