PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
ads
/
helpers
<?php use Botble\Ads\Repositories\Interfaces\AdsInterface; if (!function_exists('generate_ads_key')) { /** * @return string */ function generate_ads_key(): string { $adsRepository = app(AdsInterface::class); do { $key = strtoupper(Str::random(12)); } while ($adsRepository->count(compact('key')) > 0); return $key; } }
[-] constants.php
[edit]
[+]
..
[-] common.php
[edit]