/**
  * Re order the media in the collection.
  *
  * @param array $mediaIds
  *
  * @return $this
  *
  * @throws \Spatie\EloquentSortable\SortableException
  */
 public function saveOrder(array $mediaIds)
 {
     Media::setNewOrder($mediaIds);
     return $this;
 }