'int', 'time' => 'float', 'duration' => 'float', 'parameters' => 'object', 'words' => 'object', ]; protected $fillable = [ 'video_id', 'time', 'duration', 'text', 'parameters', 'words', ]; public function video() { return $this->belongsTo(Video::class); } }