/**
  * Generate url from the name
  *
  * @return bool
  */
 public function beforeValidate()
 {
     $this->url = $this->url ? $this->url : LittleBigHelper::slug($this->name);
     return parent::beforeValidate();
 }