2026-02-18 00:15:02 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @method static self create(array $attributes)
|
|
|
|
|
*/
|
|
|
|
|
class Movie extends Model
|
|
|
|
|
{
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'title',
|
|
|
|
|
'imdb_id',
|
|
|
|
|
'year',
|
|
|
|
|
'director',
|
|
|
|
|
'actors',
|
|
|
|
|
'plot',
|
|
|
|
|
'genre',
|
|
|
|
|
'mpaa_rating',
|
|
|
|
|
'critic_scores',
|
|
|
|
|
'poster',
|
|
|
|
|
'added_by',
|
|
|
|
|
];
|
2026-03-02 17:33:41 -06:00
|
|
|
|
|
|
|
|
protected function casts(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'critic_scores' => 'array',
|
|
|
|
|
];
|
|
|
|
|
}
|
2026-02-18 00:15:02 -06:00
|
|
|
}
|