Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/Concerns/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/Concerns/HasCache.php

<?php

namespace App\Models\Concerns;

use Closure;
use Illuminate\Support\Facades\Cache;

trait HasCache
{
    public static function getCache(Closure $function, string $suffix = '')
    {
        return Cache::remember(self::$cacheKey . $suffix, self::$cacheTtl, $function);
    }

    public static function forgetCache(): void
    {
        Cache::forget(self::$cacheKey);
    }
}