a License software published by Neumedira Indonesia
composer require aldiskatel/license
APP_LICENSE={your license key}
implement Aldiskatel\License\NeuLicense
in use below namespace
namespace App\Http\Controller;
use Aldiskatel\License\NeuLicense;
NeuLicense::verify();
<?php
namespace App\Http\Controllers; // add this namespace
use ...
use Aldiskatel\License\NeuLicense;
use ...
class ExampleController extends Controller
{
public function index()
{
//Put this to your code
NeuLicense::verify(); // add this function
}
}