feat: scene update

This commit is contained in:
2026-06-16 17:15:08 +03:30
parent 191e5597c0
commit 81ac4a896f
3 changed files with 34 additions and 5 deletions
+2 -1
View File
@@ -7,10 +7,11 @@
class Scene extends Model
{
protected $fillable = ['theme_id', 'name', 'image_path', 'video_path', 'sound_path', 'order', 'is_active'];
protected $fillable = ['theme_id', 'name', 'image_path', 'video_path', 'sound_path', 'order', 'is_active', 'is_premium'];
protected $casts = [
'is_active' => 'boolean',
'is_premium' => 'boolean',
'order' => 'integer',
];