System - Laravel License Key
php artisan make:middleware CheckLicense public function handle($request, Closure $next)
Schema::create('licenses', function (Blueprint $table) $table->id(); $table->string('key')->unique(); $table->foreignId('user_id')->nullable()->constrained(); // who owns it $table->string('product_name'); $table->enum('status', ['active', 'expired', 'revoked'])->default('active'); $table->timestamp('valid_until')->nullable(); $table->integer('max_domains')->default(1); $table->json('features')->nullable(); // e.g., ["api", "reports"] $table->timestamps(); ); // Domain whitelist / activation table Schema::create('license_activations', function (Blueprint $table) $table->id(); $table->foreignId('license_id')->constrained()->onDelete('cascade'); $table->string('domain'); $table->ipAddress('ip'); $table->timestamp('last_verified_at'); $table->timestamps(); );
$activeDomains = $license->activations() ->where('domain', $domain) ->orWhere('domain', '!=', $domain) ->count(); laravel license key system
if (!$result['valid']) return response()->json(['error' => $result['message']], 403);
php artisan make:command LicenseExpiryCheck // inside handle() License::where('valid_until', '<', now()) ->where('status', 'active') ->update(['status' => 'expired']); Schedule it in Console/Kernel : Closure $next) Schema::create('licenses'
( api.php ):
public function validate(string $key, ?string $domain = null): array function (Blueprint $table) $table->
protected function checkDomainLimit(License $license, string $domain): bool
class LicenseService