feat: add is_premium

This commit is contained in:
2026-07-01 12:31:45 +03:30
parent b97ce2dcef
commit 27413ae827
3 changed files with 27 additions and 2 deletions
+3 -2
View File
@@ -16,11 +16,12 @@ class MusicPlaylist extends Model
protected $table = 'music_playlists';
protected $fillable = [
'name', 'slug', 'description', 'image_id', 'detail_image_id', 'order', 'is_active'
'name', 'slug', 'description', 'image_id', 'detail_image_id', 'order', 'is_active', 'is_premium'
];
protected $casts = [
'is_active' => 'boolean',
'is_premium' => 'boolean',
'order' => 'integer',
];
protected $appends = [