added support for adding/removing movies from a movie list

This commit is contained in:
Edward Tirado Jr 2026-03-02 17:33:41 -06:00
parent 8970e82780
commit 95712abdb6
12 changed files with 138 additions and 262 deletions

View file

@ -22,4 +22,11 @@ class Movie extends Model
'poster',
'added_by',
];
protected function casts(): array
{
return [
'critic_scores' => 'array',
];
}
}