/**
  * Save a new model and return the instance
  *
  * @param array Attributes
  * @return Genre model instance
  */
 public function create(array $data)
 {
     return Genre::create($data);
 }