{{-- @php
function generateRandomCode() {
$characters = '0123456789abcdefghijklmnopqrstuvwxyz';
$code = '';
for ($i = 0; $i < 36; $i++) {
if (in_array($i, [8, 13, 18, 23])) {
$code .= '-';
} else {
$code .= $characters[rand(0, strlen($characters) - 1)];
}
}
return $code;
}
$randomCode = generateRandomCode();
@endphp
A purchase code (license) is only valid for One Domain. Are you using this theme on a new domain? Purchase a new license here to get a new purchase code.