| Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Domains/Engine/Concerns/ |
| Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Domains/Engine/Concerns/HasCache.php |
<?php
declare(strict_types=1);
namespace App\Domains\Engine\Concerns;
trait HasCache
{
public int $cacheTtl = 300;
public function cache($key, $value)
{
return cache()->remember($key, $this->cacheTtl, $value);
}
}