/**
  * Sync up the list of tags in the database.
  *
  * @param VideoRequest $request
  * @param Video        $video
  */
 private function syncTags(Video $video, array $tags)
 {
     $video->tags()->sync($tags);
 }