BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
app
/
Models
/
Section
📤 Upload
📝 New File
📁 New Folder
Close
Editing: FeaturesMarquee.php
<?php namespace App\Models\Section; use App\Models\Concerns\HasCache; use Illuminate\Database\Eloquent\Model; class FeaturesMarquee extends Model { use HasCache; public static string $cacheKey = 'cache_features_marquees'; public static int $cacheTtl = 3600 * 24; protected $table = 'features_marquees'; protected $fillable = [ 'title', 'position', ]; }
Save
Cancel