Your IP : 216.73.216.110


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

<?php

namespace App\Models;

use App\Models\Concerns\HasCache;
use Illuminate\Database\Eloquent\Model;

class Ad extends Model
{
    use HasCache;

    protected $fillable = [
        'type',
        'code',
        'status',
    ];

    public static string $cacheKey = 'cache_ad';

    public static int $cacheTtl = 3600 * 24;
}